From beba0781fe4e960d47c9944f3069fe59801ec950 Mon Sep 17 00:00:00 2001 From: jennyhickson <61183013+jennyhickson@users.noreply.github.com> Date: Thu, 29 Jan 2026 12:35:10 +0000 Subject: [PATCH 01/18] Expand list of repositories for milestones --- sbin/gh_manage_milestones | 25 +++++++++++++++++-------- 1 file changed, 17 insertions(+), 8 deletions(-) diff --git a/sbin/gh_manage_milestones b/sbin/gh_manage_milestones index e0a459cc..f2fd3b6b 100755 --- a/sbin/gh_manage_milestones +++ b/sbin/gh_manage_milestones @@ -13,17 +13,26 @@ set -euo pipefail # -- Modify milestones in relevant repositories REPOS=( - "MetOffice/um" + "MetOffice/casim" + "MetOffice/gcom" + "MetOffice/git_playground" + "MetOffice/growss" "MetOffice/jules" "MetOffice/lfric_apps" "MetOffice/lfric_core" - "MetOffice/ukca" - "MetOffice/casim" - "MetOffice/socrates" - "MetOffice/um_doc" + "MetOffice/moci" + "MetOffice/mule" + "MetOffice/rose_picker" + "MetOffice/shumlib" "MetOffice/simulation-systems" "MetOffice/SimSys_Scripts" - "MetOffice/git_playground" + "MetOffice/socrates" + "MetOffice/socrates-spectral" + "MetOffice/ukca" + "MetOffice/um" + "MetOffice/um_aux" + "MetOffice/um_doc" + "MetOffice/um_meta" ) usage() { @@ -175,9 +184,9 @@ for repo in "${REPOS[@]}"; do fi # -- Build GH command from optional arguments. - gh_args=(-f "title=\"${TITLE}\"") + gh_args=(-f "title=${TITLE}") [[ -n "$DUE" ]] && gh_args+=(-f "due_on=${DUE}") - [[ -n "$DESC" ]] && gh_args+=(-f "description=\"${DESC}\"") + [[ -n "$DESC" ]] && gh_args+=(-f "description=${DESC}") # -- Create or update the milestone From eaef11d3cbba7780f4540c5e7b4c429710e9d0a6 Mon Sep 17 00:00:00 2001 From: jennyhickson <61183013+jennyhickson@users.noreply.github.com> Date: Thu, 29 Jan 2026 12:35:26 +0000 Subject: [PATCH 02/18] Extract project class into own file --- workload/review_project.py | 142 +++++++++++++++++++++++++++++++++++++ workload/workload.py | 129 ++++++++------------------------- 2 files changed, 172 insertions(+), 99 deletions(-) create mode 100644 workload/review_project.py diff --git a/workload/review_project.py b/workload/review_project.py new file mode 100644 index 00000000..8167b98e --- /dev/null +++ b/workload/review_project.py @@ -0,0 +1,142 @@ +# ----------------------------------------------------------------------------- +# (C) Crown copyright Met Office. All rights reserved. +# The file LICENCE, distributed with this code, contains details of the terms +# under which the code may be used. +# ----------------------------------------------------------------------------- + +''' +Class and functions for interacting with the Simulation Systems Review Tracker +Project. +''' + +import json +import subprocess +from pathlib import Path + +class ProjectData: + """ + A class to hold GitHub project data + + data: dict Raw data from the project + review_data: list Data filtered to contain a list of review tuples + (reviewer, repository) + """ + + def __init__(self, test: bool = False, capture: bool = False): + self.raw_data = {} + self.data = {} + self.review_data = [] + + self.fetch_project_data(test, capture) + self.extract_data() + + def fetch_project_data(self, test: bool, capture: bool): + """ + Retrieve data from GitHub API or a from a test file. + """ + if test: + file = Path(__file__).parent / "test" / "test.json" + with open(file) as f: + self.raw_data = json.loads(f.read()) + + else: + command = "gh project item-list 376 -L 500 --owner MetOffice --format json" + output = subprocess.run(command.split(), capture_output=True, timeout=180) + if output.returncode: + raise RuntimeError( + "Error fetching GitHub Project data: \n " + output.stderr.decode() + ) + + self.raw_data = json.loads(output.stdout) + + if capture: + file = Path(__file__).parent / "test" / "test.json" + with open(file, "w") as f: + json.dump(self.raw_data, f) + print( + "Project data saved to test.json. Use --test to run with" + " the captured data." + ) + + def extract_data(self): + for pr in self.raw_data["items"]: + pull_request = {} + pull_request["id"] = pr["id"] + pull_request["title"] = pr["content"]["title"] + pull_request["number"] = pr["content"]["number"] + + if "status" in pr: + pull_request["status"] = pr["status"] + else: + pull_request["status"] = None + + if "milestone" in pr: + pull_request["milestone"] = pr["milestone"]["title"] + else: + pull_request["milestone"] = None + + if "assignee" in pr: + pull_request["assignee"] = pr["assignees"] + else: + pull_request["assignee"] = None + + if "code Review" in pr: + pull_request["code review"] = pr["code Review"] + else: + pull_request["code review"] = None + + if "sciTech Review" in pr: + pull_request["scitech review"] = pr["sciTech Review"] + else: + pull_request["scitech review"] = None + + repo = pr["content"]["repository"].replace("MetOffice/", "") + if repo in self.data: + self.data[repo].append(pull_request) + else: + self.data[repo] = [pull_request] + + def get_reviewers_for_repo(self, repo: str, test: bool = False) -> list: + """ + Return a list of reviewers for a given repository. + """ + if repo in self.data: + pull_requests = self.data[repo] + else: + return [] + + reviewers = [] + + if test: + print("\n=== Reviewers for repository " + repo) + + for pr in pull_requests: + sr = pr["scitech review"] + if sr: + reviewers.append(sr) + + cr = pr["code review"] + if cr: + reviewers.append(cr) + + if test and (cr or sr): + # Handle case where these are None + if not sr: + sr = "" + if not cr: + cr = "" + + print( + "SciTech:", + f"{sr: <18}", + "Code:", + f"{cr: <18}", + pr["title"], + ) + + return reviewers + + def get_repositories(self) -> list: + """ Return a list of repositories found in the project data.""" + + return list(self.data.keys()) diff --git a/workload/workload.py b/workload/workload.py index eba598f1..73a8dc8e 100644 --- a/workload/workload.py +++ b/workload/workload.py @@ -1,110 +1,31 @@ +# ----------------------------------------------------------------------------- +# (C) Crown copyright Met Office. All rights reserved. +# The file LICENCE, distributed with this code, contains details of the terms +# under which the code may be used. +# ----------------------------------------------------------------------------- + +''' +This script will read the details of pull requests from the Simulation Systems +Review Tracker project and print tables of the number of reviews assigned to +each reviewer. +''' + import argparse import json import subprocess from pathlib import Path - from prettytable import PrettyTable +from review_project import ProjectData + lfric_repositories = [ "lfric_apps", "lfric_core", ] -ssd_repositories = [ - "um", - "jules", - "socrates", - "casim", - "ukca", - "simulation-systems", - "SimSys_Scripts", - "git_playground", - "growss", -] - adminID = "MGEX82" # person in github teams as a central admin but not relevant here -class ProjectData: - """ - A class to hold GitHub project data. The focus is on review information. - - data: dict Raw data from the project - review_data: list Data filtered to contain a list of review tuples - """ - - def __init__(self, test: bool = False, capture: bool = False): - self.data = {} - self.review_data = [] - - self.fetch_project_data(test, capture) - self.filter_reviewers(test) - - def fetch_project_data(self, test: bool, capture: bool): - """ - Retrieve data from GitHub API or a from a test file. - """ - if test: - file = Path(__file__).parent / "test" / "test.json" - with open(file) as f: - self.data = json.loads(f.read()) - - else: - command = "gh project item-list 376 -L 500 --owner MetOffice --format json" - output = subprocess.run(command.split(), capture_output=True, timeout=180) - if output.returncode: - raise RuntimeError( - "Error fetching GitHub Project data: \n " + output.stderr.decode() - ) - - self.data = json.loads(output.stdout) - - if capture: - file = Path(__file__).parent / "test" / "test.json" - with open(file, "w") as f: - json.dump(self.data, f) - print( - "Project data saved to test.json. Use --test to run with" - " the captured data." - ) - - def filter_reviewers(self, test: bool = False): - """ - Filter the data to create a list of review tuples - """ - all_reviews = self.data["items"] - for review in all_reviews: - cr = "" - sr = "" - if "code Review" in review: - cr = review["code Review"].strip() - self.review_data.append((cr, review["repository"])) - - if "sciTech Review" in review: - sr = review["sciTech Review"].strip() - self.review_data.append((sr, review["repository"])) - - if test and (cr or sr): - print( - "SciTech:", - f"{sr: <18}", - "Code:", - f"{cr: <18}", - f"{review['repository']: <50}", - review["title"], - ) - - def one_repo(self, repository: str) -> list: - """ - Filter the review data to just that of one repository - - repository: string Name of repository to include - return: list All reviewers that have reviews assigned in that repository - including duplicates. - """ - return [x[0] for x in self.review_data if repository in x[1]] - - class Team: """ A class to hold GitHub team data. @@ -161,6 +82,16 @@ def get_team_members(self) -> list: """ return self.members +def other_repo_list(data: ProjectData, to_exclude: list) -> list: + """ + Create a list of all repositories with data in the project, not including + any repositories that are found elsewhere. + """ + + all_repos = data.get_repositories() + + return sorted(set(all_repos) - set(to_exclude)) + def count_items(item_list: list) -> dict: """ @@ -178,7 +109,7 @@ def count_items(item_list: list) -> dict: return count -def build_table(data: ProjectData, reviewer_list: list, repos: list) -> PrettyTable: +def build_table(data: ProjectData, reviewer_list: list, repos: list, test: bool) -> PrettyTable: """ Build a pretty table from the data by extracting just the desired repositories and reviewers. @@ -195,7 +126,7 @@ def build_table(data: ProjectData, reviewer_list: list, repos: list) -> PrettyTa totals = [0] * len(reviewer_list) for repo in repos: - review_count = count_items(data.one_repo(repo)) + review_count = count_items(data.get_reviewers_for_repo(repo, test)) sorted_count = [] for index, person in enumerate(reviewer_list): @@ -271,10 +202,10 @@ def main(total: bool, test: bool, capture_project: bool): # Create tables for each combination of reviewers and reposotories tables = {} - ## Table for SSD only repositories - repo_list = ssd_repositories + ## Table for non-LFRic repositories + repo_list = other_repo_list(data, lfric_repositories) reviewers = teams["SSD"].get_team_members() - tables["SSD"] = build_table(data, reviewers, repo_list) + tables["SSD"] = build_table(data, reviewers, repo_list, test) ## Table for LFRic repositories repo_list = lfric_repositories @@ -286,7 +217,7 @@ def main(total: bool, test: bool, capture_project: bool): for person in members: if person not in reviewers: reviewers.append(person) - tables["LFRic"] = build_table(data, reviewers, repo_list) + tables["LFRic"] = build_table(data, reviewers, repo_list, test) # Print tables for name, table in tables.items(): From 5bb7738a915cd22375d3103f7f569fc4bb424568 Mon Sep 17 00:00:00 2001 From: jennyhickson <61183013+jennyhickson@users.noreply.github.com> Date: Thu, 29 Jan 2026 13:45:29 +0000 Subject: [PATCH 03/18] Rename directory --- {workload => gh_review_project}/review_project.py | 0 {workload => gh_review_project}/test/SimSysCodeReviewers.json | 0 .../test/core-capability-development.json | 0 {workload => gh_review_project}/test/ssdteam.json | 0 {workload => gh_review_project}/test/test.json | 0 {workload => gh_review_project}/test/toolscollabdev.json | 0 {workload => gh_review_project}/workload.py | 2 +- 7 files changed, 1 insertion(+), 1 deletion(-) rename {workload => gh_review_project}/review_project.py (100%) rename {workload => gh_review_project}/test/SimSysCodeReviewers.json (100%) rename {workload => gh_review_project}/test/core-capability-development.json (100%) rename {workload => gh_review_project}/test/ssdteam.json (100%) rename {workload => gh_review_project}/test/test.json (100%) rename {workload => gh_review_project}/test/toolscollabdev.json (100%) rename {workload => gh_review_project}/workload.py (98%) diff --git a/workload/review_project.py b/gh_review_project/review_project.py similarity index 100% rename from workload/review_project.py rename to gh_review_project/review_project.py diff --git a/workload/test/SimSysCodeReviewers.json b/gh_review_project/test/SimSysCodeReviewers.json similarity index 100% rename from workload/test/SimSysCodeReviewers.json rename to gh_review_project/test/SimSysCodeReviewers.json diff --git a/workload/test/core-capability-development.json b/gh_review_project/test/core-capability-development.json similarity index 100% rename from workload/test/core-capability-development.json rename to gh_review_project/test/core-capability-development.json diff --git a/workload/test/ssdteam.json b/gh_review_project/test/ssdteam.json similarity index 100% rename from workload/test/ssdteam.json rename to gh_review_project/test/ssdteam.json diff --git a/workload/test/test.json b/gh_review_project/test/test.json similarity index 100% rename from workload/test/test.json rename to gh_review_project/test/test.json diff --git a/workload/test/toolscollabdev.json b/gh_review_project/test/toolscollabdev.json similarity index 100% rename from workload/test/toolscollabdev.json rename to gh_review_project/test/toolscollabdev.json diff --git a/workload/workload.py b/gh_review_project/workload.py similarity index 98% rename from workload/workload.py rename to gh_review_project/workload.py index 73a8dc8e..5f5a3bc0 100644 --- a/workload/workload.py +++ b/gh_review_project/workload.py @@ -166,7 +166,7 @@ def parse_args(): """ parser = argparse.ArgumentParser( - "Create tables of review workload based on Simulation Systems Review Tracker" + "Create tables of review gh_review_project based on Simulation Systems Review Tracker" ) parser.add_argument( "--total", From 5b0bd9515be1f9a8cbc5cd6578e9a061d2ed9b20 Mon Sep 17 00:00:00 2001 From: jennyhickson <61183013+jennyhickson@users.noreply.github.com> Date: Thu, 29 Jan 2026 13:49:17 +0000 Subject: [PATCH 04/18] tidy unneeded structure. --- gh_review_project/review_project.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/gh_review_project/review_project.py b/gh_review_project/review_project.py index 8167b98e..b636fba6 100644 --- a/gh_review_project/review_project.py +++ b/gh_review_project/review_project.py @@ -17,15 +17,14 @@ class ProjectData: """ A class to hold GitHub project data - data: dict Raw data from the project - review_data: list Data filtered to contain a list of review tuples - (reviewer, repository) + raw_data: dict Raw data from the project + data: dict Data filtered to contain most needed pull request details, + sorted by repository. """ def __init__(self, test: bool = False, capture: bool = False): self.raw_data = {} self.data = {} - self.review_data = [] self.fetch_project_data(test, capture) self.extract_data() From 52108986e401ad2a5eaf22c68222a7b9d6702e7e Mon Sep 17 00:00:00 2001 From: jennyhickson <61183013+jennyhickson@users.noreply.github.com> Date: Thu, 29 Jan 2026 13:53:51 +0000 Subject: [PATCH 05/18] typo --- gh_review_project/workload.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gh_review_project/workload.py b/gh_review_project/workload.py index 5f5a3bc0..73a8dc8e 100644 --- a/gh_review_project/workload.py +++ b/gh_review_project/workload.py @@ -166,7 +166,7 @@ def parse_args(): """ parser = argparse.ArgumentParser( - "Create tables of review gh_review_project based on Simulation Systems Review Tracker" + "Create tables of review workload based on Simulation Systems Review Tracker" ) parser.add_argument( "--total", From e11cfa5b0b85c26ed1d0268d4868beae252cc3ab Mon Sep 17 00:00:00 2001 From: jennyhickson <61183013+jennyhickson@users.noreply.github.com> Date: Thu, 29 Jan 2026 14:23:17 +0000 Subject: [PATCH 06/18] black --- gh_review_project/review_project.py | 7 ++++--- gh_review_project/workload.py | 9 ++++++--- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/gh_review_project/review_project.py b/gh_review_project/review_project.py index b636fba6..67956aef 100644 --- a/gh_review_project/review_project.py +++ b/gh_review_project/review_project.py @@ -4,15 +4,16 @@ # under which the code may be used. # ----------------------------------------------------------------------------- -''' +""" Class and functions for interacting with the Simulation Systems Review Tracker Project. -''' +""" import json import subprocess from pathlib import Path + class ProjectData: """ A class to hold GitHub project data @@ -136,6 +137,6 @@ def get_reviewers_for_repo(self, repo: str, test: bool = False) -> list: return reviewers def get_repositories(self) -> list: - """ Return a list of repositories found in the project data.""" + """Return a list of repositories found in the project data.""" return list(self.data.keys()) diff --git a/gh_review_project/workload.py b/gh_review_project/workload.py index 73a8dc8e..16118ca8 100644 --- a/gh_review_project/workload.py +++ b/gh_review_project/workload.py @@ -4,11 +4,11 @@ # under which the code may be used. # ----------------------------------------------------------------------------- -''' +""" This script will read the details of pull requests from the Simulation Systems Review Tracker project and print tables of the number of reviews assigned to each reviewer. -''' +""" import argparse import json @@ -82,6 +82,7 @@ def get_team_members(self) -> list: """ return self.members + def other_repo_list(data: ProjectData, to_exclude: list) -> list: """ Create a list of all repositories with data in the project, not including @@ -109,7 +110,9 @@ def count_items(item_list: list) -> dict: return count -def build_table(data: ProjectData, reviewer_list: list, repos: list, test: bool) -> PrettyTable: +def build_table( + data: ProjectData, reviewer_list: list, repos: list, test: bool +) -> PrettyTable: """ Build a pretty table from the data by extracting just the desired repositories and reviewers. From 6c8214ad2557889f244b17a2f5f2f5ee19c1d3e6 Mon Sep 17 00:00:00 2001 From: jennyhickson <61183013+jennyhickson@users.noreply.github.com> Date: Thu, 29 Jan 2026 16:02:22 +0000 Subject: [PATCH 07/18] refactor with classmethods --- gh_review_project/review_project.py | 89 +++++++++++++++++------------ gh_review_project/workload.py | 25 +++++--- 2 files changed, 70 insertions(+), 44 deletions(-) diff --git a/gh_review_project/review_project.py b/gh_review_project/review_project.py index 67956aef..d54d850b 100644 --- a/gh_review_project/review_project.py +++ b/gh_review_project/review_project.py @@ -18,48 +18,63 @@ class ProjectData: """ A class to hold GitHub project data - raw_data: dict Raw data from the project data: dict Data filtered to contain most needed pull request details, sorted by repository. + test: bool Run using test data and extra logging. """ - def __init__(self, test: bool = False, capture: bool = False): - self.raw_data = {} - self.data = {} + def __init__(self, data: dict, test: bool = False): + self.data = data + self.test = test - self.fetch_project_data(test, capture) - self.extract_data() - - def fetch_project_data(self, test: bool, capture: bool): + @classmethod + def from_github(cls, capture: bool = False, file: Path = None) -> "ProjectData": """ - Retrieve data from GitHub API or a from a test file. + Retrieve data from GitHub API and initialise the class. """ - if test: - file = Path(__file__).parent / "test" / "test.json" - with open(file) as f: - self.raw_data = json.loads(f.read()) - - else: - command = "gh project item-list 376 -L 500 --owner MetOffice --format json" - output = subprocess.run(command.split(), capture_output=True, timeout=180) - if output.returncode: - raise RuntimeError( - "Error fetching GitHub Project data: \n " + output.stderr.decode() - ) + command = "gh project item-list 376 -L 500 --owner MetOffice --format json" + output = subprocess.run(command.split(), capture_output=True, timeout=180) + if output.returncode: + raise RuntimeError( + "Error fetching GitHub Project data: \n " + output.stderr.decode() + ) - self.raw_data = json.loads(output.stdout) + raw_data = json.loads(output.stdout) - if capture: - file = Path(__file__).parent / "test" / "test.json" + if capture: + if file: with open(file, "w") as f: - json.dump(self.raw_data, f) + json.dump(raw_data, f) print( - "Project data saved to test.json. Use --test to run with" - " the captured data." + f"Project data saved to {file}." ) + else: + print("Unable to capture data as filename not specified.") + + data = cls._extract_data(raw_data) + return cls(data, test=False) - def extract_data(self): - for pr in self.raw_data["items"]: + @classmethod + def from_file(cls, file: Path) -> "ProjectData": + """ + Retrieve data from test file and initialise the class. + """ + with open(file) as f: + raw_data = json.loads(f.read()) + + data = cls._extract_data(raw_data) + return cls(data, test=True) + + @classmethod + def _extract_data(cls, raw_data: dict) -> dict: + """ + Extract useful information from the raw data and + store it in a dictionary keyed by repository. + """ + + data = {} + + for pr in raw_data["items"]: pull_request = {} pull_request["id"] = pr["id"] pull_request["title"] = pr["content"]["title"] @@ -91,12 +106,14 @@ def extract_data(self): pull_request["scitech review"] = None repo = pr["content"]["repository"].replace("MetOffice/", "") - if repo in self.data: - self.data[repo].append(pull_request) + if repo in data: + data[repo].append(pull_request) else: - self.data[repo] = [pull_request] + data[repo] = [pull_request] + + return data - def get_reviewers_for_repo(self, repo: str, test: bool = False) -> list: + def get_reviewers_for_repo(self, repo: str) -> list: """ Return a list of reviewers for a given repository. """ @@ -107,8 +124,8 @@ def get_reviewers_for_repo(self, repo: str, test: bool = False) -> list: reviewers = [] - if test: - print("\n=== Reviewers for repository " + repo) + if self.test: + print("\n=== Reviewers for " + repo) for pr in pull_requests: sr = pr["scitech review"] @@ -119,7 +136,7 @@ def get_reviewers_for_repo(self, repo: str, test: bool = False) -> list: if cr: reviewers.append(cr) - if test and (cr or sr): + if self.test and (cr or sr): # Handle case where these are None if not sr: sr = "" diff --git a/gh_review_project/workload.py b/gh_review_project/workload.py index 16118ca8..a6685bbb 100644 --- a/gh_review_project/workload.py +++ b/gh_review_project/workload.py @@ -25,6 +25,7 @@ adminID = "MGEX82" # person in github teams as a central admin but not relevant here +testfile = Path(__file__).parent / "test" / "test.json" class Team: """ @@ -111,8 +112,7 @@ def count_items(item_list: list) -> dict: def build_table( - data: ProjectData, reviewer_list: list, repos: list, test: bool -) -> PrettyTable: + data: ProjectData, reviewer_list: list, repos: list) -> PrettyTable: """ Build a pretty table from the data by extracting just the desired repositories and reviewers. @@ -129,7 +129,7 @@ def build_table( totals = [0] * len(reviewer_list) for repo in repos: - review_count = count_items(data.get_reviewers_for_repo(repo, test)) + review_count = count_items(data.get_reviewers_for_repo(repo)) sorted_count = [] for index, person in enumerate(reviewer_list): @@ -186,14 +186,23 @@ def parse_args(): action="store_true", help="Capture the current project status into the test file", ) + parser.add_argument( + "--file", + default=testfile, + help="Filepath to test data for either capture the project status, " + "or use as input data.", + ) return parser.parse_args() -def main(total: bool, test: bool, capture_project: bool): +def main(total: bool, test: bool, capture_project: bool, file: Path): # Extract data from github about the reviews and team members. - data = ProjectData(test, capture_project) + if test: + data = ProjectData.from_file(file) + else: + data = ProjectData.from_github(capture_project, file) teams = { "SSD": Team("ssdteam", test), @@ -208,7 +217,7 @@ def main(total: bool, test: bool, capture_project: bool): ## Table for non-LFRic repositories repo_list = other_repo_list(data, lfric_repositories) reviewers = teams["SSD"].get_team_members() - tables["SSD"] = build_table(data, reviewers, repo_list, test) + tables["SSD"] = build_table(data, reviewers, repo_list) ## Table for LFRic repositories repo_list = lfric_repositories @@ -220,7 +229,7 @@ def main(total: bool, test: bool, capture_project: bool): for person in members: if person not in reviewers: reviewers.append(person) - tables["LFRic"] = build_table(data, reviewers, repo_list, test) + tables["LFRic"] = build_table(data, reviewers, repo_list) # Print tables for name, table in tables.items(): @@ -229,4 +238,4 @@ def main(total: bool, test: bool, capture_project: bool): if __name__ == "__main__": args = parse_args() - main(args.total, args.test, args.capture_project) + main(args.total, args.test, args.capture_project, args.file) From 134dc398bc67273ae97a7f0e4887733853166393 Mon Sep 17 00:00:00 2001 From: jennyhickson <61183013+jennyhickson@users.noreply.github.com> Date: Thu, 29 Jan 2026 16:03:39 +0000 Subject: [PATCH 08/18] black --- gh_review_project/review_project.py | 4 +--- gh_review_project/workload.py | 6 +++--- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/gh_review_project/review_project.py b/gh_review_project/review_project.py index d54d850b..16f0d851 100644 --- a/gh_review_project/review_project.py +++ b/gh_review_project/review_project.py @@ -45,9 +45,7 @@ def from_github(cls, capture: bool = False, file: Path = None) -> "ProjectData": if file: with open(file, "w") as f: json.dump(raw_data, f) - print( - f"Project data saved to {file}." - ) + print(f"Project data saved to {file}.") else: print("Unable to capture data as filename not specified.") diff --git a/gh_review_project/workload.py b/gh_review_project/workload.py index a6685bbb..7d4b51eb 100644 --- a/gh_review_project/workload.py +++ b/gh_review_project/workload.py @@ -27,6 +27,7 @@ testfile = Path(__file__).parent / "test" / "test.json" + class Team: """ A class to hold GitHub team data. @@ -111,8 +112,7 @@ def count_items(item_list: list) -> dict: return count -def build_table( - data: ProjectData, reviewer_list: list, repos: list) -> PrettyTable: +def build_table(data: ProjectData, reviewer_list: list, repos: list) -> PrettyTable: """ Build a pretty table from the data by extracting just the desired repositories and reviewers. @@ -190,7 +190,7 @@ def parse_args(): "--file", default=testfile, help="Filepath to test data for either capture the project status, " - "or use as input data.", + "or use as input data.", ) return parser.parse_args() From 94a9e0f9007a088f9b418f36222ff8018807867e Mon Sep 17 00:00:00 2001 From: jennyhickson <61183013+jennyhickson@users.noreply.github.com> Date: Thu, 29 Jan 2026 16:24:02 +0000 Subject: [PATCH 09/18] process filepath better --- gh_review_project/workload.py | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/gh_review_project/workload.py b/gh_review_project/workload.py index 7d4b51eb..f840d5ae 100644 --- a/gh_review_project/workload.py +++ b/gh_review_project/workload.py @@ -25,8 +25,6 @@ adminID = "MGEX82" # person in github teams as a central admin but not relevant here -testfile = Path(__file__).parent / "test" / "test.json" - class Team: """ @@ -168,6 +166,8 @@ def parse_args(): Read command line args """ + testfile = Path(__file__).parent / "test" / "test.json" + parser = argparse.ArgumentParser( "Create tables of review workload based on Simulation Systems Review Tracker" ) @@ -193,7 +193,12 @@ def parse_args(): "or use as input data.", ) - return parser.parse_args() + args = parser.parse_args() + + args.file = Path(args.file) + args.file = args.file.expanduser().resolve() + + return args def main(total: bool, test: bool, capture_project: bool, file: Path): From c756e7abef87186f828f16eef7c4d2aaefb7adae Mon Sep 17 00:00:00 2001 From: jennyhickson <61183013+jennyhickson@users.noreply.github.com> Date: Mon, 2 Feb 2026 08:43:26 +0000 Subject: [PATCH 10/18] add milestone script --- gh_review_project/finish_milestone.py | 187 ++ gh_review_project/review_project.py | 60 +- gh_review_project/test/test.json | 2794 +------------------------ 3 files changed, 236 insertions(+), 2805 deletions(-) create mode 100644 gh_review_project/finish_milestone.py diff --git a/gh_review_project/finish_milestone.py b/gh_review_project/finish_milestone.py new file mode 100644 index 00000000..3cf9d444 --- /dev/null +++ b/gh_review_project/finish_milestone.py @@ -0,0 +1,187 @@ +# ----------------------------------------------------------------------------- +# (C) Crown copyright Met Office. All rights reserved. +# The file LICENCE, distributed with this code, contains details of the terms +# under which the code may be used. +# ----------------------------------------------------------------------------- + +""" +This script will run the processes needed to close off and finish a milestone + * Archive all completed PRs against the milestone in the Review Tracker Project + * Close the milestone in each repository + * Report on: + * Closed PRs at a different milestone + * Remaining open PRs and issues against this milestone + * Closed PRs against this milestone +""" +from collections import defaultdict +from pathlib import Path +import argparse +from review_project import ProjectData + + +def print_banner(message: str) -> None: + print("\n") + print("=" * len(message)) + print(message) + print("=" * len(message)) + + +def still_open(open_prs: dict, current_milestone: str) -> int: + """ + Report on all open pull requests for the current milestone + """ + + print_banner(f"Checking for open pull requests for {current_milestone}") + + total = 0 + + for repo in open_prs: + print(f"{repo} \n{'-'*len(repo)}") + for pr in open_prs[repo]: + print(f"{pr['status']: <18} #{pr['number']: <5} {pr['title']}") + + count = len(open_prs[repo]) + print(f"-> {count} open pull request(s) in {repo} \n") + total += count + + if total == 0: + print("No open pull requests for this milestone \n") + + return total + + +def closed_other(closed_prs: dict, current_milestone: str) -> int: + """ + Report on closed pull requests not at the current milestone. + """ + + print_banner(f"Checking for closed pull requests not for {current_milestone}") + + total = 0 + + for milestone in closed_prs: + if milestone == current_milestone: + continue + + for repo in closed_prs[milestone]: + print(f"{repo} \n{'-' * len(repo)}") + for pr in closed_prs[milestone][repo]: + print(f"#{pr['number'] : <5} {pr['title']}") + + count = len(closed_prs[milestone][repo]) + print( + f"-> {count} closed pull request(s) in {repo} at milestone {milestone} \n" + ) + total += count + + if total == 0: + print("No closed pull requests not at this milestone \n") + + return total + + +def check_ready(open_prs: dict, closed_prs: dict, milestone: str) -> None: + total_open = still_open(open_prs[milestone], milestone) + total_other = closed_other(closed_prs, milestone) + + if total_open or total_other: + print("=" * 50) + print( + f"{total_open} open pull request(s) in {milestone} and " + f"{total_other} closed pull request(s) not in {milestone}." + ) + # cont = input("Would you like to continue with closing this milestone? (y/n) ") + # + # if cont == "n": + # exit(0) + # elif cont != "y": + # print("Unrecognised input, please select y or n") + +def report(closed: dict, milestone: str) -> None: + + print_banner(f"Pull requests completed for {milestone}") + + for repo in closed: + print(f"{repo: <20} {len(closed[repo]): >3} pull requests") + + +def archive(closed_prs: dict, dryrun: bool) -> None: + + print_banner("Archiving all completed pull requests for this milestone") + + #gh project item-archive [] [flags] + + for repo in closed_prs: + for pr in closed_prs[repo]: + if dryrun: + print(f"Archiving #{pr['number']} in {repo}") + +def parse_args(): + """ + Read command line args + """ + + testfile = Path(__file__).parent / "test" / "test.json" + + parser = argparse.ArgumentParser( + "Archive milestone contents within the project and close the " + "milestone within each repository." + ) + + parser.add_argument("--milestone", help="Milestone to archive and close.") + parser.add_argument( + "--test", + action="store_true", + help="Use test input files.", + ) + parser.add_argument( + "--capture_project", + action="store_true", + help="Capture the current project status into the test file", + ) + parser.add_argument( + "--file", + default=testfile, + help="Filepath to test data for either capture the project status, " + "or use as input data.", + ) + parser.add_argument( + "--dry", + action="store_true", + help="Dry run. Print commands, don't action them. Always true when " + "running with test data." + ) + + args = parser.parse_args() + + args.file = Path(args.file) + args.file = args.file.expanduser().resolve() + + if args.test: + args.dry = True + + return args + + +def main(milestone: str, test: bool, capture_project: bool, file: Path, dry: bool) -> None: + + if test: + data = ProjectData.from_file(file) + else: + data = ProjectData.from_github(capture_project, file) + + open_prs_by_milestones = data.get_by_milestone("open") + closed_prs_by_milestones = data.get_by_milestone("closed") + + check_ready(open_prs_by_milestones, closed_prs_by_milestones, milestone) + + report(closed_prs_by_milestones[milestone], milestone) + + archive(closed_prs_by_milestones[milestone], dry) + + print("pause") + + +if __name__ == "__main__": + args = parse_args() + main(args.milestone, args.test, args.capture_project, args.file, args.dry) diff --git a/gh_review_project/review_project.py b/gh_review_project/review_project.py index 16f0d851..c6fd6dbc 100644 --- a/gh_review_project/review_project.py +++ b/gh_review_project/review_project.py @@ -12,6 +12,7 @@ import json import subprocess from pathlib import Path +from collections import defaultdict class ProjectData: @@ -23,9 +24,18 @@ class ProjectData: test: bool Run using test data and extra logging. """ - def __init__(self, data: dict, test: bool = False): + open_states = [ + "In Progress", + "SciTech Review", + "Code Review", + "Approved", + "Changes Requested", + ] + + def __init__(self, data: dict, test: bool = False, milestones: list = None): self.data = data self.test = test + self.milestones = milestones @classmethod def from_github(cls, capture: bool = False, file: Path = None) -> "ProjectData": @@ -49,8 +59,8 @@ def from_github(cls, capture: bool = False, file: Path = None) -> "ProjectData": else: print("Unable to capture data as filename not specified.") - data = cls._extract_data(raw_data) - return cls(data, test=False) + data, milestones = cls._extract_data(raw_data) + return cls(data=data, test=False, milestones=milestones) @classmethod def from_file(cls, file: Path) -> "ProjectData": @@ -60,8 +70,8 @@ def from_file(cls, file: Path) -> "ProjectData": with open(file) as f: raw_data = json.loads(f.read()) - data = cls._extract_data(raw_data) - return cls(data, test=True) + data, milestones = cls._extract_data(raw_data) + return cls(data=data, test=True, milestones=milestones) @classmethod def _extract_data(cls, raw_data: dict) -> dict: @@ -70,7 +80,8 @@ def _extract_data(cls, raw_data: dict) -> dict: store it in a dictionary keyed by repository. """ - data = {} + data = defaultdict(list) + milestones = set() for pr in raw_data["items"]: pull_request = {} @@ -86,7 +97,9 @@ def _extract_data(cls, raw_data: dict) -> dict: if "milestone" in pr: pull_request["milestone"] = pr["milestone"]["title"] else: - pull_request["milestone"] = None + pull_request["milestone"] = "None" + + milestones.add(pull_request["milestone"]) if "assignee" in pr: pull_request["assignee"] = pr["assignees"] @@ -104,12 +117,9 @@ def _extract_data(cls, raw_data: dict) -> dict: pull_request["scitech review"] = None repo = pr["content"]["repository"].replace("MetOffice/", "") - if repo in data: - data[repo].append(pull_request) - else: - data[repo] = [pull_request] + data[repo].append(pull_request) - return data + return data, milestones def get_reviewers_for_repo(self, repo: str) -> list: """ @@ -155,3 +165,29 @@ def get_repositories(self) -> list: """Return a list of repositories found in the project data.""" return list(self.data.keys()) + + def get_by_milestone(self, status: str = "all") -> dict: + """ + Return pull requests organized by milestone and repository. These can + be filtered by status. + + status: str Status to include. Valid values are any project status + values and all, open or closed + """ + + milestone_data = defaultdict(dict) + + for repo in self.data: + for pr in self.data[repo]: + if ( + pr["status"] == status + or status == "all" + or (status == "open" and pr["status"] in self.open_states) + or (status == "closed" and pr["status"] not in self.open_states) + ): + milestone = pr["milestone"] + if not milestone_data[milestone]: + milestone_data[milestone] = defaultdict(list) + milestone_data[milestone][repo].append(pr) + + return milestone_data diff --git a/gh_review_project/test/test.json b/gh_review_project/test/test.json index 964b0544..402811b5 100644 --- a/gh_review_project/test/test.json +++ b/gh_review_project/test/test.json @@ -1,2793 +1 @@ -{ - "items": [ - { - "assignees": [ - "yaswant", - "james-bruten-mo", - "cameronbateman-mo" - ], - "content": { - "number": 72, - "repository": "MetOffice/git_playground", - "title": "added python script and github workflow for auto assigning pr reviewers", - "type": "PullRequest", - "url": "https://github.com/MetOffice/git_playground/pull/72" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgfbFi4", - "repository": "https://github.com/MetOffice/git_playground", - "reviewers": [ - "james-bruten-mo", - "yaswant" - ], - "sciTech Review": "james-bruten-mo", - "status": "SciTech Review", - "title": "added python script and github workflow for auto assigning pr reviewers" - }, - { - "assignees": [ - "Pierre-siddall" - ], - "content": { - "number": 71, - "repository": "MetOffice/git_playground", - "title": "Implement build documentation workflow ", - "type": "PullRequest", - "url": "https://github.com/MetOffice/git_playground/pull/71" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgfMMI4", - "repository": "https://github.com/MetOffice/git_playground", - "reviewers": [ - "yaswant", - "yaswant", - "andrewcoughtrie" - ], - "sciTech Review": "yaswant", - "title": "Implement build documentation workflow " - }, - { - "assignees": [ - "yaswant" - ], - "content": { - "number": 45, - "repository": "MetOffice/git_playground", - "title": "Auto assign PR author as assignee", - "type": "PullRequest", - "url": "https://github.com/MetOffice/git_playground/pull/45" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgdIMSE", - "repository": "https://github.com/MetOffice/git_playground", - "reviewers": [ - "jennyhickson" - ], - "title": "Auto assign PR author as assignee" - }, - { - "assignees": [ - "r-sharp", - "cameronbateman-mo" - ], - "content": { - "number": 104, - "repository": "MetOffice/SimSys_Scripts", - "title": "added bash script to automate jules kgo process.", - "type": "PullRequest", - "url": "https://github.com/MetOffice/SimSys_Scripts/pull/104" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzge8FcQ", - "repository": "https://github.com/MetOffice/SimSys_Scripts", - "reviewers": [ - "r-sharp", - "ericaneininger" - ], - "status": "SciTech Review", - "title": "added bash script to automate jules kgo process." - }, - { - "assignees": [ - "yaswant", - "cameronbateman-mo" - ], - "content": { - "number": 55, - "repository": "MetOffice/git_playground", - "title": "added auto PR assigner", - "type": "PullRequest", - "url": "https://github.com/MetOffice/git_playground/pull/55" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgerEIU", - "repository": "https://github.com/MetOffice/git_playground", - "status": "Code Review", - "title": "added auto PR assigner" - }, - { - "content": { - "number": 65, - "repository": "MetOffice/git_playground", - "title": "Test metoffice action for artifactory setup", - "type": "PullRequest", - "url": "https://github.com/MetOffice/git_playground/pull/65" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzge8qms", - "repository": "https://github.com/MetOffice/git_playground", - "title": "Test metoffice action for artifactory setup" - }, - { - "content": { - "number": 66, - "repository": "MetOffice/git_playground", - "title": "Test composite", - "type": "PullRequest", - "url": "https://github.com/MetOffice/git_playground/pull/66" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzge-PAs", - "repository": "https://github.com/MetOffice/git_playground", - "title": "Test composite" - }, - { - "content": { - "number": 88, - "repository": "MetOffice/git_playground", - "title": "trac wiki to markdown converter", - "type": "PullRequest", - "url": "https://github.com/MetOffice/git_playground/pull/88" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzggbEQ4", - "repository": "https://github.com/MetOffice/git_playground", - "status": "SciTech Review", - "title": "trac wiki to markdown converter" - }, - { - "assignees": [ - "yaswant" - ], - "code Review": "james-bruten-mo", - "content": { - "number": 96, - "repository": "MetOffice/git_playground", - "title": "Refactor CLA check workflow", - "type": "PullRequest", - "url": "https://github.com/MetOffice/git_playground/pull/96" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgg7UQg", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/git_playground", - "reviewers": [ - "james-bruten-mo" - ], - "title": "Refactor CLA check workflow" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "t00sa", - "content": { - "number": 1, - "repository": "MetOffice/gcom", - "title": "gcom test suite git", - "type": "PullRequest", - "url": "https://github.com/MetOffice/gcom/pull/1" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzghKetA", - "milestone": { - "description": "", - "dueOn": "", - "title": "Git Migration" - }, - "repository": "https://github.com/MetOffice/gcom", - "reviewers": [ - "t00sa", - "t00sa" - ], - "status": "Done", - "title": "gcom test suite git" - }, - { - "assignees": [ - "yaswant" - ], - "content": { - "number": 27, - "repository": "MetOffice/growss", - "title": "Optimise validation action", - "type": "PullRequest", - "url": "https://github.com/MetOffice/growss/pull/27" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzghMYH0", - "labels": [ - "CI" - ], - "repository": "https://github.com/MetOffice/growss", - "status": "SciTech Review", - "title": "Optimise validation action" - }, - { - "assignees": [ - "yaswant" - ], - "content": { - "number": 99, - "repository": "MetOffice/git_playground", - "title": "Demo growss build/deploy workflows", - "type": "PullRequest", - "url": "https://github.com/MetOffice/git_playground/pull/99" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzghQCy4", - "labels": [ - "cla-required" - ], - "repository": "https://github.com/MetOffice/git_playground", - "status": "SciTech Review", - "title": "Demo growss build/deploy workflows" - }, - { - "content": { - "number": 494, - "repository": "MetOffice/simulation-systems", - "title": "style: apply PEP8 formatting", - "type": "PullRequest", - "url": "https://github.com/MetOffice/simulation-systems/pull/494" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzghVd3A", - "repository": "https://github.com/MetOffice/simulation-systems", - "status": "Done", - "title": "style: apply PEP8 formatting" - }, - { - "assignees": [ - "Pierre-siddall" - ], - "code Review": "james-bruten-mo", - "content": { - "number": 101, - "repository": "MetOffice/git_playground", - "title": "Test fortran linter", - "type": "PullRequest", - "url": "https://github.com/MetOffice/git_playground/pull/101" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzghY6mc", - "labels": [ - "enhancement", - "cla-signed", - "CI", - "contributor" - ], - "repository": "https://github.com/MetOffice/git_playground", - "reviewers": [ - "james-bruten-mo" - ], - "status": "Code Review", - "title": "Test fortran linter" - }, - { - "assignees": [ - "yaswant" - ], - "content": { - "number": 500, - "repository": "MetOffice/simulation-systems", - "title": "Use reusable workflow to build and deploy sphinx docs", - "type": "PullRequest", - "url": "https://github.com/MetOffice/simulation-systems/pull/500" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzghhhQo", - "labels": [ - ":blue_book:Documentation" - ], - "repository": "https://github.com/MetOffice/simulation-systems", - "status": "SciTech Review", - "title": "Use reusable workflow to build and deploy sphinx docs" - }, - { - "content": { - "number": 10, - "repository": "MetOffice/um", - "title": "Add fab script", - "type": "PullRequest", - "url": "https://github.com/MetOffice/um/pull/10" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgh1YlI", - "repository": "https://github.com/MetOffice/um", - "status": "SciTech Review", - "title": "Add fab script" - }, - { - "assignees": [ - "dcaseGH" - ], - "code Review": "cameronbateman-mo", - "content": { - "number": 15, - "repository": "MetOffice/jules", - "title": "JASMIN site migration for JULES - git", - "type": "PullRequest", - "url": "https://github.com/MetOffice/jules/pull/15" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgiM9qU", - "repository": "https://github.com/MetOffice/jules", - "reviewers": [ - "james-bruten-mo" - ], - "sciTech Review": "james-bruten-mo", - "status": "SciTech Review", - "title": "JASMIN site migration for JULES - git" - }, - { - "assignees": [ - "yaswant" - ], - "code Review": "james-bruten-mo", - "content": { - "number": 105, - "repository": "MetOffice/git_playground", - "title": "Test improved cla-check from growss develop", - "type": "PullRequest", - "url": "https://github.com/MetOffice/git_playground/pull/105" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgiUChU", - "labels": [ - "cla-signed", - "contributor" - ], - "repository": "https://github.com/MetOffice/git_playground", - "reviewers": [ - "james-bruten-mo" - ], - "status": "Done", - "title": "Test improved cla-check from growss develop" - }, - { - "assignees": [ - "mo-rickywong" - ], - "code Review": "MatthewHambley", - "content": { - "number": 175, - "repository": "MetOffice/lfric_core", - "title": "Reworked Configuration Namelist Access API", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_core/pull/175" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgiZyxI", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_core", - "reviewers": [ - "MatthewHambley", - "stevemullerworth", - "mike-hobson", - "andrewcoughtrie", - "EdHone", - "MatthewHambley", - "allynt", - "MatthewHambley" - ], - "sciTech Review": "@allynt", - "status": "SciTech Review", - "title": "Reworked Configuration Namelist Access API" - }, - { - "code Review": "mo-alistairp ", - "content": { - "number": 36, - "repository": "MetOffice/lfric_apps", - "title": "Removing populate_graph_lfricinputs.cylc", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/36" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgiaaKI", - "labels": [ - "cla-required" - ], - "repository": "https://github.com/MetOffice/lfric_apps", - "status": "SciTech Review", - "title": "Removing populate_graph_lfricinputs.cylc" - }, - { - "assignees": [ - "yaswant" - ], - "code Review": "james-bruten-mo", - "content": { - "number": 529, - "repository": "MetOffice/simulation-systems", - "title": "Add GitHub Copilot instructions", - "type": "PullRequest", - "url": "https://github.com/MetOffice/simulation-systems/pull/529" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgieVuU", - "repository": "https://github.com/MetOffice/simulation-systems", - "reviewers": [ - "james-bruten-mo" - ], - "status": "Done", - "title": "Add GitHub Copilot instructions" - }, - { - "assignees": [ - "yaswant" - ], - "code Review": "jennyhickson", - "content": { - "number": 530, - "repository": "MetOffice/simulation-systems", - "title": "Local deploy config", - "type": "PullRequest", - "url": "https://github.com/MetOffice/simulation-systems/pull/530" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgiebbQ", - "repository": "https://github.com/MetOffice/simulation-systems", - "reviewers": [ - "jennyhickson", - "jennyhickson" - ], - "status": "Done", - "title": "Local deploy config" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "jennyhickson", - "content": { - "number": 531, - "repository": "MetOffice/simulation-systems", - "title": "update um release instructions", - "type": "PullRequest", - "url": "https://github.com/MetOffice/simulation-systems/pull/531" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgifuu8", - "repository": "https://github.com/MetOffice/simulation-systems", - "reviewers": [ - "jennyhickson", - "jennyhickson" - ], - "status": "Done", - "title": "update um release instructions" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "jennyhickson", - "content": { - "number": 146, - "repository": "MetOffice/SimSys_Scripts", - "title": "switch rsyncs", - "type": "PullRequest", - "url": "https://github.com/MetOffice/SimSys_Scripts/pull/146" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgifv8c", - "repository": "https://github.com/MetOffice/SimSys_Scripts", - "reviewers": [ - "jennyhickson" - ], - "status": "Done", - "title": "switch rsyncs" - }, - { - "assignees": [ - "jennyhickson" - ], - "code Review": "james-bruten-mo", - "content": { - "number": 147, - "repository": "MetOffice/SimSys_Scripts", - "title": "Workload debug", - "type": "PullRequest", - "url": "https://github.com/MetOffice/SimSys_Scripts/pull/147" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgigYaI", - "repository": "https://github.com/MetOffice/SimSys_Scripts", - "reviewers": [ - "james-bruten-mo" - ], - "status": "Done", - "title": "Workload debug" - }, - { - "content": { - "number": 182, - "repository": "MetOffice/lfric_core", - "title": "Codeowners update", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_core/pull/182" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgigxXk", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_core", - "reviewers": [ - "mike-hobson" - ], - "status": "Done", - "title": "Codeowners update" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "content": { - "number": 43, - "repository": "MetOffice/lfric_apps", - "title": "fix local build script", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/43" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgig0XM", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_apps", - "reviewers": [ - "jennyhickson" - ], - "status": "Done", - "title": "fix local build script" - }, - { - "assignees": [ - "DrTVockerodtMO" - ], - "code Review": "allynt", - "content": { - "number": 44, - "repository": "MetOffice/lfric_apps", - "title": "Fixing adjoint failures with transport log_space config variable set to true (broken)", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/44" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgig0tM", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_apps", - "reviewers": [ - "tom-j-h", - "allynt" - ], - "status": "Done", - "title": "Fixing adjoint failures with transport log_space config variable set to true (broken)" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "yaswant", - "content": { - "number": 46, - "repository": "MetOffice/growss", - "title": "remove labelling when cla already signed on base", - "type": "PullRequest", - "url": "https://github.com/MetOffice/growss/pull/46" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgilBmY", - "repository": "https://github.com/MetOffice/growss", - "reviewers": [ - "yaswant" - ], - "status": "Done", - "title": "remove labelling when cla already signed on base" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "jennyhickson", - "content": { - "number": 534, - "repository": "MetOffice/simulation-systems", - "title": "SSH Passphrase Advice", - "type": "PullRequest", - "url": "https://github.com/MetOffice/simulation-systems/pull/534" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgilIpg", - "repository": "https://github.com/MetOffice/simulation-systems", - "reviewers": [ - "jennyhickson" - ], - "status": "Done", - "title": "SSH Passphrase Advice" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "yaswant", - "content": { - "number": 14, - "repository": "MetOffice/mule", - "title": "add shumlib testing", - "type": "PullRequest", - "url": "https://github.com/MetOffice/mule/pull/14" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgilpZg", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/mule", - "reviewers": [ - "yaswant", - "yaswant" - ], - "status": "Done", - "title": "add shumlib testing" - }, - { - "content": { - "number": 185, - "repository": "MetOffice/lfric_core", - "title": "Add some words about the reason for testing", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_core/pull/185" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgimF7A", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_core", - "reviewers": [ - "allynt", - "allynt" - ], - "status": "Done", - "title": "Add some words about the reason for testing" - }, - { - "code Review": "james-bruten-mo", - "content": { - "number": 148, - "repository": "MetOffice/SimSys_Scripts", - "title": "check_macro_chains to fail gracefully on FCM", - "type": "PullRequest", - "url": "https://github.com/MetOffice/SimSys_Scripts/pull/148" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgimes0", - "repository": "https://github.com/MetOffice/SimSys_Scripts", - "reviewers": [ - "james-bruten-mo" - ], - "status": "Done", - "title": "check_macro_chains to fail gracefully on FCM" - }, - { - "assignees": [ - "tinyendian" - ], - "code Review": "EdHone", - "content": { - "number": 53, - "repository": "MetOffice/lfric_apps", - "title": "Additional PC2 optimisations for NG-ARCH", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/53" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgioBpQ", - "labels": [ - "cla-signed" - ], - "milestone": { - "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", - "dueOn": "2026-03-04T00:00:00Z", - "title": "Spring 2026" - }, - "repository": "https://github.com/MetOffice/lfric_apps", - "reviewers": [ - "MetBenjaminWent" - ], - "sciTech Review": "MetBenjaminWent ", - "status": "SciTech Review", - "title": "Additional PC2 optimisations for NG-ARCH" - }, - { - "assignees": [ - "mo-lottieturner" - ], - "code Review": "mo-alistairp", - "content": { - "number": 54, - "repository": "MetOffice/lfric_apps", - "title": "Removing populate_graph_lfricinputs.cylc", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/54" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgipEyc", - "labels": [ - "cla-signed", - "LFRic Inputs" - ], - "repository": "https://github.com/MetOffice/lfric_apps", - "reviewers": [ - "james-bruten-mo", - "mo-alistairp" - ], - "sciTech Review": "james-bruten-mo", - "status": "Code Review", - "title": "Removing populate_graph_lfricinputs.cylc" - }, - { - "assignees": [ - "ukmo-juan-castillo" - ], - "code Review": "mo-lottieturner", - "content": { - "number": 55, - "repository": "MetOffice/lfric_apps", - "title": "Generation of lfric2lfric lbcs", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/55" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgipHzg", - "labels": [ - "cla-signed", - "LFRic Inputs" - ], - "repository": "https://github.com/MetOffice/lfric_apps", - "reviewers": [ - "mike-hobson", - "mike-hobson", - "mo-lottieturner" - ], - "sciTech Review": "mike-hobson", - "status": "Code Review", - "title": "Generation of lfric2lfric lbcs" - }, - { - "assignees": [ - "MetBenjaminWent" - ], - "code Review": "mo-lottieturner", - "content": { - "number": 56, - "repository": "MetOffice/lfric_apps", - "title": "Transmute explicit no Transformation list and global.py", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/56" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgipIv4", - "labels": [ - "cla-signed" - ], - "milestone": { - "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", - "dueOn": "2026-03-04T00:00:00Z", - "title": "Spring 2026" - }, - "repository": "https://github.com/MetOffice/lfric_apps", - "reviewers": [ - "oakleybrunt", - "oakleybrunt", - "mo-lottieturner" - ], - "sciTech Review": "oakleybrunt", - "status": "Code Review", - "title": "Transmute explicit no Transformation list and global.py" - }, - { - "assignees": [ - "MetBenjaminWent" - ], - "code Review": "mo-lucy-gordon", - "content": { - "number": 57, - "repository": "MetOffice/lfric_apps", - "title": "Some of Boundary Layer PSyclone-d", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/57" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgipJBQ", - "labels": [ - "cla-signed" - ], - "milestone": { - "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", - "dueOn": "2026-03-04T00:00:00Z", - "title": "Spring 2026" - }, - "repository": "https://github.com/MetOffice/lfric_apps", - "reviewers": [ - "jcsmeto", - "mo-lucy-gordon", - "christophermaynard" - ], - "sciTech Review": "jcsmeto", - "status": "SciTech Review", - "title": "Some of Boundary Layer PSyclone-d" - }, - { - "code Review": "yaswant", - "content": { - "number": 537, - "repository": "MetOffice/simulation-systems", - "title": "add new FAQs", - "type": "PullRequest", - "url": "https://github.com/MetOffice/simulation-systems/pull/537" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgipTjc", - "repository": "https://github.com/MetOffice/simulation-systems", - "reviewers": [ - "yaswant" - ], - "status": "Done", - "title": "add new FAQs" - }, - { - "assignees": [ - "DrTVockerodtMO" - ], - "code Review": "harry-shepherd ", - "content": { - "number": 59, - "repository": "MetOffice/lfric_apps", - "title": "Introducing cache for adjoint lookup tables (broken)", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/59" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgiplYE", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_apps", - "reviewers": [ - "mo-joshuacolclough" - ], - "status": "Done", - "title": "Introducing cache for adjoint lookup tables (broken)" - }, - { - "assignees": [ - "mo-lottieturner" - ], - "code Review": "allynt", - "content": { - "number": 187, - "repository": "MetOffice/lfric_core", - "title": "Adding logging to tweak_iodef", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_core/pull/187" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgip0Is", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_core", - "status": "SciTech Review", - "title": "Adding logging to tweak_iodef" - }, - { - "content": { - "number": 188, - "repository": "MetOffice/lfric_core", - "title": "Update root Readme file.", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_core/pull/188" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgip2Q0", - "labels": [ - "cla-signed" - ], - "milestone": { - "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", - "dueOn": "2026-03-04T00:00:00Z", - "title": "Spring 2026" - }, - "repository": "https://github.com/MetOffice/lfric_core", - "reviewers": [ - "yaswant", - "mike-hobson" - ], - "status": "Done", - "title": "Update root Readme file." - }, - { - "assignees": [ - "MetBenjaminWent" - ], - "content": { - "number": 62, - "repository": "MetOffice/lfric_apps", - "title": "Boundary Layer - bdy_expl2 optimisations", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/62" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgiqBQo", - "labels": [ - "cla-required" - ], - "milestone": { - "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", - "dueOn": "2026-03-04T00:00:00Z", - "title": "Spring 2026" - }, - "repository": "https://github.com/MetOffice/lfric_apps", - "status": "SciTech Review", - "title": "Boundary Layer - bdy_expl2 optimisations" - }, - { - "content": { - "number": 63, - "repository": "MetOffice/lfric_apps", - "title": "Remove user contact question from issue template", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/63" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgiqEBU", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_apps", - "reviewers": [ - "james-bruten-mo" - ], - "status": "Done", - "title": "Remove user contact question from issue template" - }, - { - "content": { - "number": 189, - "repository": "MetOffice/lfric_core", - "title": "Remove contact details from Issue template", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_core/pull/189" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgiqGFo", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_core", - "reviewers": [ - "andrewcoughtrie" - ], - "status": "Done", - "title": "Remove contact details from Issue template" - }, - { - "assignees": [ - "andrewcoughtrie" - ], - "code Review": "stevemullerworth", - "content": { - "number": 190, - "repository": "MetOffice/lfric_core", - "title": "Fixed duplication of directory ownership, should have been a differen\u2026", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_core/pull/190" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgiqVsY", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_core", - "reviewers": [ - "yaswant", - "stevemullerworth" - ], - "sciTech Review": "yaswant", - "status": "Done", - "title": "Fixed duplication of directory ownership, should have been a differen\u2026" - }, - { - "assignees": [ - "jasonjunweilyu" - ], - "code Review": "MetBenjaminWent", - "content": { - "number": 65, - "repository": "MetOffice/lfric_apps", - "title": "Stochastic Physics CPU and GPU Optimizations - NGARCH", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/65" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgiroos", - "labels": [ - "cla-signed" - ], - "milestone": { - "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", - "dueOn": "2026-03-04T00:00:00Z", - "title": "Spring 2026" - }, - "repository": "https://github.com/MetOffice/lfric_apps", - "reviewers": [ - "mo-alistairp", - "mo-alistairp", - "MetBenjaminWent" - ], - "sciTech Review": "mo-alistairp", - "status": "Code Review", - "title": "Stochastic Physics CPU and GPU Optimizations - NGARCH" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "paulfield2024", - "content": { - "number": 1, - "repository": "MetOffice/monc", - "title": "add files for monc", - "type": "PullRequest", - "url": "https://github.com/MetOffice/monc/pull/1" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgisJ_g", - "repository": "https://github.com/MetOffice/monc", - "reviewers": [ - "yaswant", - "paulfield2024" - ], - "sciTech Review": "yaswant", - "status": "Code Review", - "title": "add files for monc" - }, - { - "code Review": "mo-rickywong", - "content": { - "number": 191, - "repository": "MetOffice/lfric_core", - "title": "Fail gracefully if the configuration namelist doesn't exist", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_core/pull/191" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgisRIQ", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_core", - "reviewers": [ - "stevemullerworth", - "andrewcoughtrie", - "mo-rickywong", - "EdHone", - "MatthewHambley", - "MatthewHambley" - ], - "sciTech Review": "andrewcoughtrie", - "status": "Done", - "title": "Fail gracefully if the configuration namelist doesn't exist" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "content": { - "number": 47, - "repository": "MetOffice/growss", - "title": "Remove label", - "type": "PullRequest", - "url": "https://github.com/MetOffice/growss/pull/47" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgisU60", - "repository": "https://github.com/MetOffice/growss", - "reviewers": [ - "yaswant", - "andrewcoughtrie" - ], - "status": "Done", - "title": "Remove label" - }, - { - "content": { - "number": 48, - "repository": "MetOffice/growss", - "title": "Remove label", - "type": "PullRequest", - "url": "https://github.com/MetOffice/growss/pull/48" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgisl4Y", - "repository": "https://github.com/MetOffice/growss", - "status": "Done", - "title": "Remove label" - }, - { - "code Review": "mo-rickywong", - "content": { - "number": 67, - "repository": "MetOffice/lfric_apps", - "title": "Check config name", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/67" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgis7KA", - "labels": [ - "enhancement", - "Linked Core", - "cla-signed" - ], - "milestone": { - "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", - "dueOn": "2026-03-04T00:00:00Z", - "title": "Spring 2026" - }, - "repository": "https://github.com/MetOffice/lfric_apps", - "reviewers": [ - "mo-rickywong" - ], - "sciTech Review": "andrewcoughtrie", - "status": "Done", - "title": "Check config name" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "content": { - "number": 149, - "repository": "MetOffice/SimSys_Scripts", - "title": "update to use bash -l", - "type": "PullRequest", - "url": "https://github.com/MetOffice/SimSys_Scripts/pull/149" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgis_zo", - "repository": "https://github.com/MetOffice/SimSys_Scripts", - "reviewers": [ - "t00sa" - ], - "status": "Done", - "title": "update to use bash -l" - }, - { - "content": { - "number": 22, - "repository": "MetOffice/jules", - "title": "Coupling of WHAM! model of human fire use and management with INFERNO", - "type": "PullRequest", - "url": "https://github.com/MetOffice/jules/pull/22" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgitYHw", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/jules", - "status": "SciTech Review", - "title": "Coupling of WHAM! model of human fire use and management with INFERNO" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "jennyhickson", - "content": { - "number": 540, - "repository": "MetOffice/simulation-systems", - "title": "add note to enable stable", - "type": "PullRequest", - "url": "https://github.com/MetOffice/simulation-systems/pull/540" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgitc0Q", - "repository": "https://github.com/MetOffice/simulation-systems", - "reviewers": [ - "jennyhickson" - ], - "status": "Done", - "title": "add note to enable stable" - }, - { - "assignees": [ - "tommbendall" - ], - "content": { - "number": 69, - "repository": "MetOffice/lfric_apps", - "title": "Correct the sample_physics_winds_correction option", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/69" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgitsto", - "labels": [ - "bug", - "KGO", - "cla-signed" - ], - "milestone": { - "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", - "dueOn": "2026-03-04T00:00:00Z", - "title": "Spring 2026" - }, - "repository": "https://github.com/MetOffice/lfric_apps", - "status": "SciTech Review", - "title": "Correct the sample_physics_winds_correction option" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "content": { - "number": 150, - "repository": "MetOffice/SimSys_Scripts", - "title": "respect gitignore", - "type": "PullRequest", - "url": "https://github.com/MetOffice/SimSys_Scripts/pull/150" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgitymk", - "repository": "https://github.com/MetOffice/SimSys_Scripts", - "reviewers": [ - "t00sa" - ], - "status": "Done", - "title": "respect gitignore" - }, - { - "assignees": [ - "yaswant" - ], - "code Review": "MatthewHambley", - "content": { - "number": 2, - "repository": "MetOffice/rose_picker", - "title": "Tidy up repo and add checks", - "type": "PullRequest", - "url": "https://github.com/MetOffice/rose_picker/pull/2" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgiuLSs", - "labels": [ - "enhancement" - ], - "repository": "https://github.com/MetOffice/rose_picker", - "reviewers": [ - "MatthewHambley", - "MatthewHambley", - "james-bruten-mo", - "james-bruten-mo" - ], - "sciTech Review": "james-bruten-mo", - "status": "Done", - "title": "Tidy up repo and add checks" - }, - { - "assignees": [ - "DrTVockerodtMO" - ], - "code Review": "allynt", - "content": { - "number": 71, - "repository": "MetOffice/lfric_apps", - "title": "Fixing adjoint failures with transport log_space config variable set to true", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/71" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgiuvmk", - "labels": [ - "bug", - "cla-signed" - ], - "milestone": { - "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", - "dueOn": "2026-03-04T00:00:00Z", - "title": "Spring 2026" - }, - "repository": "https://github.com/MetOffice/lfric_apps", - "reviewers": [ - "allynt", - "tom-j-h" - ], - "sciTech Review": "tom-j-h", - "status": "Code Review", - "title": "Fixing adjoint failures with transport log_space config variable set to true" - }, - { - "assignees": [ - "DrTVockerodtMO" - ], - "code Review": "harry-shepherd", - "content": { - "number": 72, - "repository": "MetOffice/lfric_apps", - "title": "Introducing cache for adjoint lookup tables", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/72" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgiuzc0", - "labels": [ - "enhancement", - "cla-signed" - ], - "milestone": { - "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", - "dueOn": "2026-03-04T00:00:00Z", - "title": "Spring 2026" - }, - "repository": "https://github.com/MetOffice/lfric_apps", - "reviewers": [ - "harry-shepherd", - "mo-joshuacolclough" - ], - "sciTech Review": "mo-joshuacolclough", - "status": "SciTech Review", - "title": "Introducing cache for adjoint lookup tables" - }, - { - "content": { - "number": 151, - "repository": "MetOffice/SimSys_Scripts", - "title": "Revert \"respect gitignore\"", - "type": "PullRequest", - "url": "https://github.com/MetOffice/SimSys_Scripts/pull/151" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgivXGk", - "repository": "https://github.com/MetOffice/SimSys_Scripts", - "status": "Done", - "title": "Revert \"respect gitignore\"" - }, - { - "content": { - "number": 193, - "repository": "MetOffice/lfric_core", - "title": "Change TM to R", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_core/pull/193" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgivYho", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_core", - "reviewers": [ - "yaswant" - ], - "status": "Done", - "title": "Change TM to R" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "content": { - "number": 152, - "repository": "MetOffice/SimSys_Scripts", - "title": "Rsync exclude", - "type": "PullRequest", - "url": "https://github.com/MetOffice/SimSys_Scripts/pull/152" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgivsg8", - "repository": "https://github.com/MetOffice/SimSys_Scripts", - "reviewers": [ - "t00sa" - ], - "status": "Done", - "title": "Rsync exclude" - }, - { - "assignees": [ - "tommbendall" - ], - "content": { - "number": 74, - "repository": "MetOffice/lfric_apps", - "title": "Fix Gungho Plots", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/74" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgivx3w", - "labels": [ - "bug", - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_apps", - "reviewers": [ - "jameskent-metoffice" - ], - "status": "SciTech Review", - "title": "Fix Gungho Plots" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "andrewcoughtrie", - "content": { - "number": 194, - "repository": "MetOffice/lfric_core", - "title": "Update gitignore", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_core/pull/194" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgiv4t0", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_core", - "reviewers": [ - "andrewcoughtrie", - "andrewcoughtrie" - ], - "status": "Done", - "title": "Update gitignore" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "andrewcoughtrie", - "content": { - "number": 75, - "repository": "MetOffice/lfric_apps", - "title": "update gitignore", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/75" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgiv48M", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_apps", - "reviewers": [ - "andrewcoughtrie" - ], - "status": "Code Review", - "title": "update gitignore" - }, - { - "content": { - "number": 49, - "repository": "MetOffice/growss", - "title": "Remove label", - "type": "PullRequest", - "url": "https://github.com/MetOffice/growss/pull/49" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgiv-mw", - "repository": "https://github.com/MetOffice/growss", - "status": "Done", - "title": "Remove label" - }, - { - "assignees": [ - "mike-hobson" - ], - "code Review": "svadams ", - "content": { - "number": 198, - "repository": "MetOffice/lfric_core", - "title": "Reusing xt xmap", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_core/pull/198" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgiwo0o", - "labels": [ - "enhancement", - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_core", - "reviewers": [ - "MatthewHambley", - "MatthewHambley", - "svadams", - "svadams", - "MatthewHambley" - ], - "sciTech Review": "MatthewHambley", - "status": "Code Review", - "title": "Reusing xt xmap" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "yaswant", - "content": { - "number": 50, - "repository": "MetOffice/growss", - "title": "update cla action", - "type": "PullRequest", - "url": "https://github.com/MetOffice/growss/pull/50" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgixAD8", - "repository": "https://github.com/MetOffice/growss", - "reviewers": [ - "yaswant" - ], - "status": "Done", - "title": "update cla action" - }, - { - "assignees": [ - "r-sharp" - ], - "code Review": "yaswant", - "content": { - "number": 153, - "repository": "MetOffice/SimSys_Scripts", - "title": "Umdp3 checker in python", - "type": "PullRequest", - "url": "https://github.com/MetOffice/SimSys_Scripts/pull/153" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgixAEw", - "labels": [ - "CI", - "git-migration" - ], - "repository": "https://github.com/MetOffice/SimSys_Scripts", - "reviewers": [ - "jennyhickson" - ], - "sciTech Review": "jennyhickson", - "status": "SciTech Review", - "title": "Umdp3 checker in python" - }, - { - "content": { - "number": 107, - "repository": "MetOffice/git_playground", - "title": "Demonstrate cla", - "type": "PullRequest", - "url": "https://github.com/MetOffice/git_playground/pull/107" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgiyoGc", - "labels": [ - "cla-signed", - "contributor" - ], - "repository": "https://github.com/MetOffice/git_playground", - "status": "Done", - "title": "Demonstrate cla" - }, - { - "content": { - "number": 108, - "repository": "MetOffice/git_playground", - "title": "demonstrate edited contributors", - "type": "PullRequest", - "url": "https://github.com/MetOffice/git_playground/pull/108" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgiypHE", - "labels": [ - "contributor", - "cla-modified" - ], - "repository": "https://github.com/MetOffice/git_playground", - "status": "SciTech Review", - "title": "demonstrate edited contributors" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "yaswant", - "content": { - "number": 51, - "repository": "MetOffice/growss", - "title": "Update the cla-check ", - "type": "PullRequest", - "url": "https://github.com/MetOffice/growss/pull/51" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgiyp2U", - "repository": "https://github.com/MetOffice/growss", - "reviewers": [ - "yaswant" - ], - "status": "Changes Requested", - "title": "Update the cla-check " - }, - { - "content": { - "number": 109, - "repository": "MetOffice/git_playground", - "title": "make a change", - "type": "PullRequest", - "url": "https://github.com/MetOffice/git_playground/pull/109" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgiy1VA", - "labels": [ - "contributor" - ], - "repository": "https://github.com/MetOffice/git_playground", - "status": "SciTech Review", - "title": "make a change" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "content": { - "number": 110, - "repository": "MetOffice/git_playground", - "title": "Demonstrate from stable", - "type": "PullRequest", - "url": "https://github.com/MetOffice/git_playground/pull/110" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgiy3Hc", - "labels": [ - "contributor" - ], - "repository": "https://github.com/MetOffice/git_playground", - "status": "In Progress", - "title": "Demonstrate from stable" - }, - { - "assignees": [ - "oakleybrunt", - "MetBenjaminWent" - ], - "content": { - "number": 78, - "repository": "MetOffice/lfric_apps", - "title": "Signed CLA", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/78" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgiy3wQ", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_apps", - "reviewers": [ - "MetBenjaminWent", - "MetBenjaminWent" - ], - "status": "Done", - "title": "Signed CLA" - }, - { - "code Review": "ericaneininger ", - "content": { - "number": 8, - "repository": "MetOffice/gcom", - "title": "7 - Add routines needed for nudging", - "type": "PullRequest", - "url": "https://github.com/MetOffice/gcom/pull/8" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgi4SVA", - "repository": "https://github.com/MetOffice/gcom", - "status": "SciTech Review", - "title": "7 - Add routines needed for nudging" - }, - { - "code Review": "mo-lucy-gordon ", - "content": { - "number": 200, - "repository": "MetOffice/lfric_core", - "title": "new caliper locations from performance indicator 2025", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_core/pull/200" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjDNYg", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_core", - "reviewers": [ - "mike-hobson", - "MatthewHambley", - "mo-lucy-gordon" - ], - "status": "SciTech Review", - "title": "new caliper locations from performance indicator 2025" - }, - { - "assignees": [ - "mo-marqh" - ], - "code Review": "Pierre-siddall ", - "content": { - "number": 79, - "repository": "MetOffice/lfric_apps", - "title": "Time calipers pi25", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/79" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjDNp0", - "labels": [ - "cla-signed" - ], - "milestone": { - "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", - "dueOn": "2026-03-04T00:00:00Z", - "title": "Spring 2026" - }, - "repository": "https://github.com/MetOffice/lfric_apps", - "status": "SciTech Review", - "title": "Time calipers pi25" - }, - { - "assignees": [ - "jedbakerMO" - ], - "code Review": "mo-rickywong", - "content": { - "number": 80, - "repository": "MetOffice/lfric_apps", - "title": "Timing Mod wrapper rewrite", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/80" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjDOPA", - "labels": [ - "cla-signed" - ], - "milestone": { - "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", - "dueOn": "2026-03-04T00:00:00Z", - "title": "Spring 2026" - }, - "repository": "https://github.com/MetOffice/lfric_apps", - "reviewers": [ - "christophermaynard", - "mo-rickywong" - ], - "sciTech Review": "christophermaynard", - "status": "Code Review", - "title": "Timing Mod wrapper rewrite" - }, - { - "assignees": [ - "jedbakerMO" - ], - "code Review": "mo-rickywong", - "content": { - "number": 201, - "repository": "MetOffice/lfric_core", - "title": "Timing Mod wrapper rewrite", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_core/pull/201" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjDx7Q", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_core", - "reviewers": [ - "mo-rickywong", - "christophermaynard" - ], - "status": "SciTech Review", - "title": "Timing Mod wrapper rewrite" - }, - { - "assignees": [ - "harry-shepherd" - ], - "code Review": "t00sa", - "content": { - "number": 82, - "repository": "MetOffice/lfric_apps", - "title": "Performance test config", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/82" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjHS9I", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_apps", - "reviewers": [ - "harry-shepherd", - "t00sa" - ], - "sciTech Review": "harry-shepherd", - "status": "SciTech Review", - "title": "Performance test config" - }, - { - "assignees": [ - "EdHone" - ], - "code Review": "t00sa", - "content": { - "number": 202, - "repository": "MetOffice/lfric_core", - "title": "Verniered time calipers pi25", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_core/pull/202" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjHXCo", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_core", - "reviewers": [ - "EdHone", - "t00sa" - ], - "sciTech Review": "EdHone", - "status": "SciTech Review", - "title": "Verniered time calipers pi25" - }, - { - "assignees": [ - "oakleybrunt" - ], - "code Review": "cameronbateman-mo", - "content": { - "number": 83, - "repository": "MetOffice/lfric_apps", - "title": "Update UKCA initialisation for dust only to include segment size", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/83" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjNliU", - "labels": [ - "KGO", - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_apps", - "reviewers": [ - "alanjhewitt", - "cameronbateman-mo" - ], - "sciTech Review": "alanjhewitt", - "status": "Code Review", - "title": "Update UKCA initialisation for dust only to include segment size" - }, - { - "code Review": "james-bruten-mo", - "content": { - "number": 154, - "repository": "MetOffice/SimSys_Scripts", - "title": "Fix bug with extra whitespace", - "type": "PullRequest", - "url": "https://github.com/MetOffice/SimSys_Scripts/pull/154" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjNmlo", - "repository": "https://github.com/MetOffice/SimSys_Scripts", - "reviewers": [ - "james-bruten-mo" - ], - "status": "Done", - "title": "Fix bug with extra whitespace" - }, - { - "content": { - "number": 203, - "repository": "MetOffice/lfric_core", - "title": "Explicitly take XIOS file frequency attribute definition from the iodef.xml where available", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_core/pull/203" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjO0QA", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_core", - "status": "Done", - "title": "Explicitly take XIOS file frequency attribute definition from the iodef.xml where available" - }, - { - "code Review": "ericaneininger", - "content": { - "number": 204, - "repository": "MetOffice/lfric_core", - "title": "reducing post-processing of XIOS output", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_core/pull/204" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjSRtQ", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_core", - "reviewers": [ - "EdHone" - ], - "sciTech Review": "EdHone", - "status": "SciTech Review", - "title": "reducing post-processing of XIOS output" - }, - { - "code Review": "ericaneininger", - "content": { - "number": 90, - "repository": "MetOffice/lfric_apps", - "title": "File metadata and Forecast reference Time Scalar to reduce post processing from lfric core", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/90" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjSRt8", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_apps", - "reviewers": [ - "EdHone" - ], - "sciTech Review": "EdHone", - "status": "SciTech Review", - "title": "File metadata and Forecast reference Time Scalar to reduce post processing from lfric core" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "jennyhickson", - "content": { - "number": 52, - "repository": "MetOffice/growss", - "title": "Action to move PRs through project state", - "type": "PullRequest", - "url": "https://github.com/MetOffice/growss/pull/52" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjVJNs", - "repository": "https://github.com/MetOffice/growss", - "reviewers": [ - "yaswant", - "jennyhickson", - "t00sa" - ], - "sciTech Review": "yaswant", - "status": "Code Review", - "title": "Action to move PRs through project state" - }, - { - "assignees": [ - "alanjhewitt" - ], - "code Review": "cameronbateman-mo", - "content": { - "number": 94, - "repository": "MetOffice/lfric_apps", - "title": "Bug in AOD diagnostics", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/94" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjVKD8", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_apps", - "reviewers": [ - "melissaebrooks", - "cameronbateman-mo" - ], - "sciTech Review": "melissaebrooks", - "status": "Code Review", - "title": "Bug in AOD diagnostics" - }, - { - "code Review": "james-bruten-mo", - "content": { - "number": 95, - "repository": "MetOffice/lfric_apps", - "title": "extract_science.py rebuild fix", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/95" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjVbnk", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_apps", - "reviewers": [ - "james-bruten-mo" - ], - "status": "SciTech Review", - "title": "extract_science.py rebuild fix" - }, - { - "assignees": [ - "jennyhickson" - ], - "code Review": "james-bruten-mo", - "content": { - "number": 155, - "repository": "MetOffice/SimSys_Scripts", - "title": "Milestone manager", - "type": "PullRequest", - "url": "https://github.com/MetOffice/SimSys_Scripts/pull/155" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjVcPM", - "repository": "https://github.com/MetOffice/SimSys_Scripts", - "reviewers": [ - "yaswant", - "james-bruten-mo" - ], - "sciTech Review": "yaswant", - "status": "Code Review", - "title": "Milestone manager" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "content": { - "number": 53, - "repository": "MetOffice/growss", - "title": "Project edit action", - "type": "PullRequest", - "url": "https://github.com/MetOffice/growss/pull/53" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjV2Cw", - "repository": "https://github.com/MetOffice/growss", - "status": "Done", - "title": "Project edit action" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "yaswant", - "content": { - "number": 111, - "repository": "MetOffice/git_playground", - "title": "test review project action", - "type": "PullRequest", - "url": "https://github.com/MetOffice/git_playground/pull/111" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjWKiM", - "labels": [ - "contributor" - ], - "repository": "https://github.com/MetOffice/git_playground", - "reviewers": [ - "yaswant", - "jennyhickson", - "yaswant" - ], - "sciTech Review": "jennyhickson", - "status": "Done", - "title": "test review project action" - }, - { - "assignees": [ - "Pierre-siddall" - ], - "code Review": "james-bruten-mo", - "content": { - "number": 158, - "repository": "MetOffice/SimSys_Scripts", - "title": "Fix suite report", - "type": "PullRequest", - "url": "https://github.com/MetOffice/SimSys_Scripts/pull/158" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjYe2E", - "labels": [ - "enhancement" - ], - "repository": "https://github.com/MetOffice/SimSys_Scripts", - "reviewers": [ - "james-bruten-mo" - ], - "status": "Changes Requested", - "title": "Fix suite report" - }, - { - "code Review": "Pierre-siddall", - "content": { - "number": 96, - "repository": "MetOffice/lfric_apps", - "title": "Add Harry Shepherd to CONTRIBUTORS.md", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/96" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjYo8E", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_apps", - "reviewers": [ - "Pierre-siddall" - ], - "status": "Done", - "title": "Add Harry Shepherd to CONTRIBUTORS.md" - }, - { - "code Review": "Pierre-siddall", - "content": { - "number": 207, - "repository": "MetOffice/lfric_core", - "title": "Add Harry Shepherd to CONTRIBUTORS.md", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_core/pull/207" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjYpJY", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_core", - "reviewers": [ - "Pierre-siddall" - ], - "status": "Done", - "title": "Add Harry Shepherd to CONTRIBUTORS.md" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "yaswant", - "content": { - "number": 55, - "repository": "MetOffice/growss", - "title": "make grep case insensitive", - "type": "PullRequest", - "url": "https://github.com/MetOffice/growss/pull/55" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjYzSk", - "repository": "https://github.com/MetOffice/growss", - "reviewers": [ - "yaswant" - ], - "status": "Done", - "title": "make grep case insensitive" - }, - { - "content": { - "number": 98, - "repository": "MetOffice/lfric_apps", - "title": "S20 Diags: geopot thickness", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/98" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjZLG0", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_apps", - "status": "SciTech Review", - "title": "S20 Diags: geopot thickness" - }, - { - "code Review": "ericaneininger", - "content": { - "number": 99, - "repository": "MetOffice/lfric_apps", - "title": "Gregory-Rowntree convection - PSyclone optimisation and conversion from CELL_COLUMN to DOMAIN kernel", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/99" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjZbG8", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_apps", - "reviewers": [ - "ericaneininger", - "MetBenjaminWent" - ], - "sciTech Review": "MetBenjaminWent", - "status": "Code Review", - "title": "Gregory-Rowntree convection - PSyclone optimisation and conversion from CELL_COLUMN to DOMAIN kernel" - }, - { - "content": { - "number": 101, - "repository": "MetOffice/lfric_apps", - "title": "Remove redundant options and restructure code in ex_coef to be easier to follow and modify further in future", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/101" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjZkl0", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_apps", - "status": "SciTech Review", - "title": "Remove redundant options and restructure code in ex_coef to be easier to follow and modify further in future" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "jennyhickson", - "content": { - "number": 112, - "repository": "MetOffice/git_playground", - "title": "Project Update Action Test 2", - "type": "PullRequest", - "url": "https://github.com/MetOffice/git_playground/pull/112" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjZxzc", - "labels": [ - "contributor" - ], - "repository": "https://github.com/MetOffice/git_playground", - "reviewers": [ - "yaswant", - "jennyhickson", - "jennyhickson" - ], - "sciTech Review": "yaswant", - "status": "Done", - "title": "Project Update Action Test 2" - }, - { - "code Review": "mike-hobson ", - "content": { - "number": 208, - "repository": "MetOffice/lfric_core", - "title": "Remove references to FCM following Git migration", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_core/pull/208" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjZ1xU", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_core", - "reviewers": [ - "mike-hobson", - "mike-hobson" - ], - "status": "Done", - "title": "Remove references to FCM following Git migration" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "Pierre-siddall", - "content": { - "number": 102, - "repository": "MetOffice/lfric_apps", - "title": "update symlink", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/102" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjb0M0", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_apps", - "reviewers": [ - "yaswant", - "Pierre-siddall" - ], - "status": "Done", - "title": "update symlink" - }, - { - "code Review": "@MatthewHambley", - "content": { - "number": 210, - "repository": "MetOffice/lfric_core", - "title": "Remove additional leading space from make message calls", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_core/pull/210" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjcOBI", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_core", - "reviewers": [ - "stevemullerworth", - "MatthewHambley" - ], - "status": "Done", - "title": "Remove additional leading space from make message calls" - }, - { - "assignees": [ - "yaswant" - ], - "code Review": "andrewcoughtrie", - "content": { - "number": 211, - "repository": "MetOffice/lfric_core", - "title": "Reformat pull request template", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_core/pull/211" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjc3Vk", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_core", - "reviewers": [ - "andrewcoughtrie" - ], - "status": "Code Review", - "title": "Reformat pull request template" - }, - { - "assignees": [ - "yaswant" - ], - "content": { - "number": 109, - "repository": "MetOffice/lfric_apps", - "title": "Reformat pull request template", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/109" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjdFRk", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_apps", - "reviewers": [ - "james-bruten-mo" - ], - "status": "Done", - "title": "Reformat pull request template" - }, - { - "code Review": "james-bruten-mo", - "content": { - "number": 550, - "repository": "MetOffice/simulation-systems", - "title": "Rework support request section", - "type": "PullRequest", - "url": "https://github.com/MetOffice/simulation-systems/pull/550" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjh2xU", - "repository": "https://github.com/MetOffice/simulation-systems", - "reviewers": [ - "james-bruten-mo" - ], - "status": "Done", - "title": "Rework support request section" - }, - { - "content": { - "number": 212, - "repository": "MetOffice/lfric_core", - "title": "Take XIOS file frequency configuration from iodef.xml where possible", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_core/pull/212" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjh81A", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_core", - "status": "SciTech Review", - "title": "Take XIOS file frequency configuration from iodef.xml where possible" - }, - { - "code Review": "james-bruten-mo", - "content": { - "number": 159, - "repository": "MetOffice/SimSys_Scripts", - "title": "Remove hardcoded review team", - "type": "PullRequest", - "url": "https://github.com/MetOffice/SimSys_Scripts/pull/159" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjh9IU", - "repository": "https://github.com/MetOffice/SimSys_Scripts", - "reviewers": [ - "james-bruten-mo" - ], - "status": "Done", - "title": "Remove hardcoded review team" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "jennyhickson", - "content": { - "number": 117, - "repository": "MetOffice/lfric_apps", - "title": "Add project workflow", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/117" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjild0", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_apps", - "reviewers": [ - "jennyhickson" - ], - "status": "Code Review", - "title": "Add project workflow" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "jennyhickson", - "content": { - "number": 27, - "repository": "MetOffice/jules", - "title": "add project workflow", - "type": "PullRequest", - "url": "https://github.com/MetOffice/jules/pull/27" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjimwE", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/jules", - "reviewers": [ - "jennyhickson" - ], - "status": "Code Review", - "title": "add project workflow" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "jennyhickson", - "content": { - "number": 214, - "repository": "MetOffice/lfric_core", - "title": "add project workflow", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_core/pull/214" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjingc", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_core", - "reviewers": [ - "yaswant", - "andrewcoughtrie", - "jennyhickson" - ], - "status": "Code Review", - "title": "add project workflow" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "jennyhickson", - "content": { - "number": 15, - "repository": "MetOffice/mule", - "title": "add project workflow", - "type": "PullRequest", - "url": "https://github.com/MetOffice/mule/pull/15" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjipwA", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/mule", - "reviewers": [ - "jennyhickson" - ], - "status": "Code Review", - "title": "add project workflow" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "jennyhickson", - "content": { - "number": 17, - "repository": "MetOffice/shumlib", - "title": "add project workflow", - "type": "PullRequest", - "url": "https://github.com/MetOffice/shumlib/pull/17" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjiqFE", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/shumlib", - "reviewers": [ - "jennyhickson" - ], - "status": "Code Review", - "title": "add project workflow" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "jennyhickson", - "content": { - "number": 160, - "repository": "MetOffice/SimSys_Scripts", - "title": "add project workflow", - "type": "PullRequest", - "url": "https://github.com/MetOffice/SimSys_Scripts/pull/160" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjir5A", - "repository": "https://github.com/MetOffice/SimSys_Scripts", - "reviewers": [ - "jennyhickson" - ], - "status": "Code Review", - "title": "add project workflow" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "jennyhickson", - "content": { - "number": 551, - "repository": "MetOffice/simulation-systems", - "title": "add project workflow", - "type": "PullRequest", - "url": "https://github.com/MetOffice/simulation-systems/pull/551" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjitHE", - "repository": "https://github.com/MetOffice/simulation-systems", - "reviewers": [ - "jennyhickson" - ], - "status": "Code Review", - "title": "add project workflow" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "jennyhickson", - "content": { - "number": 21, - "repository": "MetOffice/um", - "title": "add project workflow", - "type": "PullRequest", - "url": "https://github.com/MetOffice/um/pull/21" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjithY", - "repository": "https://github.com/MetOffice/um", - "reviewers": [ - "jennyhickson" - ], - "status": "Code Review", - "title": "add project workflow" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "jennyhickson", - "content": { - "number": 10, - "repository": "MetOffice/um_doc", - "title": "add project workflow", - "type": "PullRequest", - "url": "https://github.com/MetOffice/um_doc/pull/10" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjit60", - "repository": "https://github.com/MetOffice/um_doc", - "reviewers": [ - "jennyhickson" - ], - "status": "Code Review", - "title": "add project workflow" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "jennyhickson", - "content": { - "number": 7, - "repository": "MetOffice/casim", - "title": "add project workflow", - "type": "PullRequest", - "url": "https://github.com/MetOffice/casim/pull/7" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjiwcY", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/casim", - "reviewers": [ - "jennyhickson" - ], - "status": "Code Review", - "title": "add project workflow" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "jennyhickson", - "content": { - "number": 11, - "repository": "MetOffice/socrates", - "title": "add project workflow", - "type": "PullRequest", - "url": "https://github.com/MetOffice/socrates/pull/11" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjiw9s", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/socrates", - "reviewers": [ - "jennyhickson" - ], - "status": "Code Review", - "title": "add project workflow" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "jennyhickson", - "content": { - "number": 4, - "repository": "MetOffice/socrates-spectral", - "title": "add project workflow", - "type": "PullRequest", - "url": "https://github.com/MetOffice/socrates-spectral/pull/4" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjixqk", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/socrates-spectral", - "reviewers": [ - "jennyhickson" - ], - "status": "Code Review", - "title": "add project workflow" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "jennyhickson", - "content": { - "number": 2, - "repository": "MetOffice/um_aux", - "title": "Add project workflow", - "type": "PullRequest", - "url": "https://github.com/MetOffice/um_aux/pull/2" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjizd0", - "repository": "https://github.com/MetOffice/um_aux", - "reviewers": [ - "jennyhickson" - ], - "status": "Code Review", - "title": "Add project workflow" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "jennyhickson", - "content": { - "number": 9, - "repository": "MetOffice/moci", - "title": "add project workflow", - "type": "PullRequest", - "url": "https://github.com/MetOffice/moci/pull/9" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgji1pg", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/moci", - "reviewers": [ - "jennyhickson" - ], - "status": "Code Review", - "title": "add project workflow" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "jennyhickson", - "content": { - "number": 9, - "repository": "MetOffice/gcom", - "title": "add project workflow", - "type": "PullRequest", - "url": "https://github.com/MetOffice/gcom/pull/9" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgji2FI", - "repository": "https://github.com/MetOffice/gcom", - "reviewers": [ - "jennyhickson" - ], - "status": "Code Review", - "title": "add project workflow" - }, - { - "assignees": [ - "yaswant" - ], - "code Review": "@james-bruten-mo", - "content": { - "number": 161, - "repository": "MetOffice/SimSys_Scripts", - "title": "update superlinter", - "type": "PullRequest", - "url": "https://github.com/MetOffice/SimSys_Scripts/pull/161" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjj2vY", - "labels": [ - "CI" - ], - "repository": "https://github.com/MetOffice/SimSys_Scripts", - "reviewers": [ - "james-bruten-mo", - "james-bruten-mo" - ], - "status": "Done", - "title": "update superlinter" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "t00sa", - "content": { - "number": 113, - "repository": "MetOffice/git_playground", - "title": "Test review project action", - "type": "PullRequest", - "url": "https://github.com/MetOffice/git_playground/pull/113" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjlI24", - "labels": [ - "contributor" - ], - "repository": "https://github.com/MetOffice/git_playground", - "reviewers": [ - "t00sa" - ], - "status": "Done", - "title": "Test review project action" - }, - { - "assignees": [ - "t00sa" - ], - "code Review": "Pierre-siddall", - "content": { - "number": 537, - "repository": "MetOffice/fab", - "title": "Fix a trivial CUI argument handling bug", - "type": "PullRequest", - "url": "https://github.com/MetOffice/fab/pull/537" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjlJJk", - "repository": "https://github.com/MetOffice/fab", - "reviewers": [ - "Pierre-siddall" - ], - "status": "Done", - "title": "Fix a trivial CUI argument handling bug" - }, - { - "content": { - "number": 22, - "repository": "MetOffice/um", - "title": "Gm consolidate nudging", - "type": "PullRequest", - "url": "https://github.com/MetOffice/um/pull/22" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjlVRc", - "repository": "https://github.com/MetOffice/um", - "status": "SciTech Review", - "title": "Gm consolidate nudging" - }, - { - "assignees": [ - "james-bruten-mo" - ], - "code Review": "jennyhickson", - "content": { - "number": 162, - "repository": "MetOffice/SimSys_Scripts", - "title": "bump timeout", - "type": "PullRequest", - "url": "https://github.com/MetOffice/SimSys_Scripts/pull/162" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjmHNM", - "repository": "https://github.com/MetOffice/SimSys_Scripts", - "reviewers": [ - "jennyhickson" - ], - "status": "Code Review", - "title": "bump timeout" - }, - { - "content": { - "number": 120, - "repository": "MetOffice/lfric_apps", - "title": "S20 Diags: snow prob", - "type": "PullRequest", - "url": "https://github.com/MetOffice/lfric_apps/pull/120" - }, - "id": "PVTI_lADOAGrG5M4A_OAXzgjmOns", - "labels": [ - "cla-signed" - ], - "repository": "https://github.com/MetOffice/lfric_apps", - "status": "SciTech Review", - "title": "S20 Diags: snow prob" - } - ], - "totalCount": 131 -} +{"items": [{"assignees": ["james-bruten-mo"], "code Review": "jennyhickson", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @jennyhickson \r\n\r\n\r\n\r\nAdd project tracking workflow\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's style guidelines\r\n- [ ] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] If shared files have been modified, I have run the rose-stem suite locally\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 9, "repository": "MetOffice/gcom", "title": "add project workflow", "type": "PullRequest", "url": "https://github.com/MetOffice/gcom/pull/9"}, "id": "PVTI_lADOAGrG5M4A_OAXzgji2FI", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/gcom", "reviewers": ["jennyhickson"], "status": "Done", "title": "add project workflow"}, {"assignees": ["james-bruten-mo"], "code Review": "jennyhickson", "content": {"body": "# PR Summary\r\n\r\nCode Reviewer: @jennyhickson \r\n\r\n\r\n\r\nAdd project tracking workflow\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's style guidelines\r\n- [ ] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the Moci rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 9, "repository": "MetOffice/moci", "title": "add project workflow", "type": "PullRequest", "url": "https://github.com/MetOffice/moci/pull/9"}, "id": "PVTI_lADOAGrG5M4A_OAXzgji1pg", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/moci", "reviewers": ["jennyhickson"], "status": "Done", "title": "add project workflow"}, {"assignees": ["james-bruten-mo"], "code Review": "jennyhickson", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @jennyhickson \r\n\r\n\r\n\r\nAdd project tracking workflow\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's style guidelines\r\n- [ ] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the UM rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## Contributor License Agreement (CLA)\r\n\r\n- [ ] **Required** - I confirm that I have read and agree to the project's\r\n [Contributor License Agreement](https://metoffice.github.io/simulation-systems/FurtherDetails/contributing.html)\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues are properly linked and addressed\r\n- [ ] CLA compliance is confirmed\r\n- [ ] Code quality standards are met\r\n- [ ] Tests are adequate and passing\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 2, "repository": "MetOffice/um_aux", "title": "Add project workflow", "type": "PullRequest", "url": "https://github.com/MetOffice/um_aux/pull/2"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjizd0", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/um_aux", "reviewers": ["jennyhickson"], "status": "Done", "title": "Add project workflow"}, {"assignees": ["james-bruten-mo"], "code Review": "jennyhickson", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @jennyhickson \r\n\r\n\r\n\r\nAdd project tracking workflow\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's style guidelines\r\n- [ ] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] If shared files have been modified, I have run the UM and LFRic Apps rose\r\n stem suites\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 11, "repository": "MetOffice/socrates", "title": "add project workflow", "type": "PullRequest", "url": "https://github.com/MetOffice/socrates/pull/11"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjiw9s", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/socrates", "reviewers": ["jennyhickson"], "status": "Done", "title": "add project workflow"}, {"assignees": ["james-bruten-mo"], "code Review": "jennyhickson", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @jennyhickson \r\n\r\n\r\n\r\nAdd project tracking workflow\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's style guidelines\r\n- [ ] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] If shared files have been modified, I have run the UM and LFRic Apps rose\r\n stem suites\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 7, "repository": "MetOffice/casim", "title": "add project workflow", "type": "PullRequest", "url": "https://github.com/MetOffice/casim/pull/7"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjiwcY", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/casim", "reviewers": ["jennyhickson"], "status": "Done", "title": "add project workflow"}, {"assignees": ["james-bruten-mo"], "code Review": "jennyhickson", "content": {"body": "# PR Summary\r\n\r\nCode Reviewer: @jennyhickson \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's style guidelines\r\n- [ ] I have updated the version number in any edited documentation papers\r\n- [ ] The documentation papers have been built successfully, the formatting is\r\n as expected and links resolve correctly\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n# Code Review\r\n\r\n- [ ] The modified documentation has been changed to a sufficient standard\r\n", "number": 10, "repository": "MetOffice/um_doc", "title": "add project workflow", "type": "PullRequest", "url": "https://github.com/MetOffice/um_doc/pull/10"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjit60", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/um_doc", "reviewers": ["jennyhickson"], "status": "Done", "title": "add project workflow"}, {"assignees": ["james-bruten-mo"], "code Review": "jennyhickson", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @jennyhickson \r\n\r\n\r\n\r\nAdd project tracking workflow\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's style guidelines\r\n- [ ] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the UM rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 21, "repository": "MetOffice/um", "title": "add project workflow", "type": "PullRequest", "url": "https://github.com/MetOffice/um/pull/21"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjithY", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/um", "reviewers": ["jennyhickson"], "status": "Done", "title": "add project workflow"}, {"assignees": ["james-bruten-mo"], "code Review": "jennyhickson", "content": {"body": "# Description\r\n\r\nCode Reviewer: @jennyhickson \r\n\r\nAdd project tracking workflow\r\nFor this I've also updated the PR template to be closer to the other repos, including adding the reviewer entries at the top\r\n\r\n## Summary\r\n\r\n_Briefly describe the feature being introduced._\r\n\r\n## Changes\r\n\r\n_List the major changes made in this pull request._\r\n\r\n## Dependency\r\n\r\n_List dependent changes. Can use build-group logic here._\r\n\r\n## Impact\r\n\r\n_Discuss any potential impacts this feature may have on existing functionalities._\r\n\r\n## Issues addressed\r\n\r\nResolves\r\n\r\n_List issue(s) related to this PR._\r\n\r\n## Coordinated merge\r\n\r\n_Specify any coordinated merges here._\r\n\r\n\r\n## Checklist\r\n\r\n- [ ] I have performed a self-review of my own changes\r\n", "number": 160, "repository": "MetOffice/SimSys_Scripts", "title": "add project workflow", "type": "PullRequest", "url": "https://github.com/MetOffice/SimSys_Scripts/pull/160"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjir5A", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/SimSys_Scripts", "reviewers": ["jennyhickson"], "status": "Done", "title": "add project workflow"}, {"assignees": ["james-bruten-mo"], "code Review": "jennyhickson", "content": {"body": "# PR Summary\r\n\r\nCode Reviewer: @jennyhickson \r\n\r\n\r\n\r\nAdd project tracking workflow\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's style guidelines\r\n- [ ] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] This change does not introduce security vulnerabilities\r\n- [ ] I have reviewed the code for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)(including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 17, "repository": "MetOffice/shumlib", "title": "add project workflow", "type": "PullRequest", "url": "https://github.com/MetOffice/shumlib/pull/17"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjiqFE", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/shumlib", "reviewers": ["jennyhickson"], "status": "Done", "title": "add project workflow"}, {"assignees": ["james-bruten-mo"], "code Review": "jennyhickson", "content": {"body": "# PR Summary\r\n\r\nCode Reviewer: @jennyhickson \r\n\r\n\r\n\r\nAdd project tracking workflow\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's style guidelines\r\n- [ ] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] This change does not introduce security vulnerabilities\r\n- [ ] I have reviewed the code for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 15, "repository": "MetOffice/mule", "title": "add project workflow", "type": "PullRequest", "url": "https://github.com/MetOffice/mule/pull/15"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjipwA", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/mule", "reviewers": ["jennyhickson"], "status": "Done", "title": "add project workflow"}, {"assignees": ["james-bruten-mo"], "code Review": "jennyhickson", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @jennyhickson \r\n\r\n\r\n\r\nAdd project tracking workflow\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's style guidelines\r\n- [ ] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n- [ ] If editing `rose-meta/jules-shared` then have you supplied a linked UM PR?\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the JULES rose-stem suite\r\n- [ ] If shared files have been modified, I have run the UM and LFRic Apps rose\r\n stem suites\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## Approvals\r\n\r\nPlease request all relevant approvals. See the CodeOwners.txt file for section\r\nowners.\r\n\r\n### Technical\r\n\r\n- [ ] JULES Code Owner\r\n- [ ] OpenMP\r\n- [ ] River Routing\r\n- [ ] Rose Stem\r\n- [ ] Rose Metadata\r\n- [ ] Upgrade Macros\r\n\r\n### Scientific\r\n\r\n- [ ] Surface\r\n- [ ] Hydrology\r\n- [ ] Vegetation\r\n- [ ] Veg3 RED Demography\r\n- [ ] Biogechemistry\r\n- [ ] Biogenic fluxes\r\n- [ ] Fire\r\n- [ ] Lakes\r\n- [ ] Evaluation\r\n- [ ] Imogen\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 27, "repository": "MetOffice/jules", "title": "add project workflow", "type": "PullRequest", "url": "https://github.com/MetOffice/jules/pull/27"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjimwE", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/jules", "reviewers": ["jennyhickson"], "status": "Done", "title": "add project workflow"}, {"assignees": ["james-bruten-mo"], "code Review": "jennyhickson", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @jennyhickson \r\n\r\n\r\n\r\nAdd project tracking workflow\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's style guidelines\r\n- [ ] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] If shared files have been modified, I have run the UM and LFRic Apps rose\r\n stem suites\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 4, "repository": "MetOffice/socrates-spectral", "title": "add project workflow", "type": "PullRequest", "url": "https://github.com/MetOffice/socrates-spectral/pull/4"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjixqk", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/socrates-spectral", "reviewers": ["jennyhickson"], "status": "Done", "title": "add project workflow"}, {"assignees": ["james-bruten-mo"], "code Review": "jennyhickson", "content": {"body": "Code Reviewer: @jennyhickson \r\n\r\nAdd project tracking workflow\r\nAlso add a basic pr template for this repo with the CR entry", "number": 551, "repository": "MetOffice/simulation-systems", "title": "add project workflow", "type": "PullRequest", "url": "https://github.com/MetOffice/simulation-systems/pull/551"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjitHE", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/simulation-systems", "reviewers": ["jennyhickson"], "status": "Done", "title": "add project workflow"}, {"assignees": ["yaswant", "james-bruten-mo", "cameronbateman-mo"], "content": {"body": "# Description\r\n\r\nGithub workflow using python script to auto assign reviewers parsed from the pull request body.\r\n\r\nSci Tech Reviewer:\u00a0@james-bruten-mo \r\nCode Reviewer:\u00a0@yaswant \r\nThis PR:\r\n\r\n- is blocked-by #pr-number\r\n- blocks #pr-number\r\n- closes #issue-number\r\n- fixes #issue-number\r\n- is related to #issue-number ", "number": 72, "repository": "MetOffice/git_playground", "title": "added python script and github workflow for auto assigning pr reviewers", "type": "PullRequest", "url": "https://github.com/MetOffice/git_playground/pull/72"}, "id": "PVTI_lADOAGrG5M4A_OAXzgfbFi4", "repository": "https://github.com/MetOffice/git_playground", "reviewers": ["james-bruten-mo", "yaswant"], "sciTech Review": "james-bruten-mo", "status": "SciTech Review", "title": "added python script and github workflow for auto assigning pr reviewers"}, {"assignees": ["Pierre-siddall"], "content": {"body": "# Description\r\n\r\nSciTech: @yaswant \r\nCodeReview: @andrewcoughtrie \r\n\r\n(Provide a brief description of the changes in this PR, including any notes useful for reviewers)\r\n\r\nInclude a workflow to build sphinx documentation using reusable workflow.\r\n", "number": 71, "repository": "MetOffice/git_playground", "title": "Implement build documentation workflow ", "type": "PullRequest", "url": "https://github.com/MetOffice/git_playground/pull/71"}, "id": "PVTI_lADOAGrG5M4A_OAXzgfMMI4", "repository": "https://github.com/MetOffice/git_playground", "reviewers": ["yaswant", "yaswant", "andrewcoughtrie"], "sciTech Review": "yaswant", "title": "Implement build documentation workflow "}, {"assignees": ["yaswant"], "content": {"body": "# Description\r\n\r\n## Summary\r\n\r\nA GitHub action workflow to automatically assign PR author as assignees\r\n\r\n## Changes\r\n\r\n- add new GA workflow\r\n\r\n## Dependency\r\n\r\nNone\r\n\r\n## Impact\r\n\r\n\ud83e\udd16 \r\n\r\n## Issues addressed\r\n\r\nNA, but should have opened an issue, first!\r\n\r\n\r\n## Coordinated merge\r\n\r\nNA\r\n\r\n\r\n## Checklist\r\n\r\n- [x] I have performed a self-review of my own changes\r\n- [ ] Documentation Preview \r\n", "number": 45, "repository": "MetOffice/git_playground", "title": "Auto assign PR author as assignee", "type": "PullRequest", "url": "https://github.com/MetOffice/git_playground/pull/45"}, "id": "PVTI_lADOAGrG5M4A_OAXzgdIMSE", "repository": "https://github.com/MetOffice/git_playground", "reviewers": ["jennyhickson"], "title": "Auto assign PR author as assignee"}, {"assignees": ["r-sharp", "cameronbateman-mo"], "content": {"body": "# Description\r\nAutomate jules kgo process found here: https://code.metoffice.gov.uk/trac/jules/wiki/KGOInstall\r\n\r\nScript copies from user directories on azure spice and ex machines to the kgo locations on those machines.\r\n\r\nHave tested with dummy directories in the appropriate places but would be a good idea to test with an actual install to ensure it has the intended behaviour. \r\n\r\n## Checklist\r\n\r\n- [x] I have performed a self-review of my own changes\r\n", "number": 104, "repository": "MetOffice/SimSys_Scripts", "title": "added bash script to automate jules kgo process.", "type": "PullRequest", "url": "https://github.com/MetOffice/SimSys_Scripts/pull/104"}, "id": "PVTI_lADOAGrG5M4A_OAXzge8FcQ", "repository": "https://github.com/MetOffice/SimSys_Scripts", "reviewers": ["r-sharp", "ericaneininger"], "status": "SciTech Review", "title": "added bash script to automate jules kgo process."}, {"assignees": ["yaswant", "cameronbateman-mo"], "content": {"body": "# Description\r\nAdds github workflow to assign the creator of the PR request to the PR.\r\n## Summary\r\n\r\n_Briefly describe the feature being introduced._\r\n\r\n## Changes\r\n\r\n_List the major changes made in this pull request._\r\n\r\n## Dependency\r\n\r\n_List dependent changes. Can use build-group logic here._\r\n\r\n## Impact\r\n\r\n_Discuss any potential impacts this feature may have on existing functionalities._\r\n\r\n## Issues addressed\r\n\r\nResolves\r\n\r\n_List issue(s) related to this PR._\r\n\r\n## Coordinated merge\r\n\r\n_Specify any coordinated merges here._\r\n\r\n\r\n## Checklist\r\n\r\n- [x] I have performed a self-review of my own changes\r\n- [ ] Documentation Preview\r\n", "number": 55, "repository": "MetOffice/git_playground", "title": "added auto PR assigner", "type": "PullRequest", "url": "https://github.com/MetOffice/git_playground/pull/55"}, "id": "PVTI_lADOAGrG5M4A_OAXzgerEIU", "repository": "https://github.com/MetOffice/git_playground", "status": "Code Review", "title": "added auto PR assigner"}, {"content": {"body": "# Description\r\n\r\nChecking if we can reuse MO artifactory connection in GA\r\n\r\nThe authentication failure observed in artifactory authentication observed is due to the fact that [secrets are not passed to the runner when a workflow is triggered from a forked repository](https://docs.github.com/en/actions/how-tos/write-workflows/choose-what-workflows-do/use-secrets#using-secrets-in-a-workflow)\r\n", "number": 65, "repository": "MetOffice/git_playground", "title": "Test metoffice action for artifactory setup", "type": "PullRequest", "url": "https://github.com/MetOffice/git_playground/pull/65"}, "id": "PVTI_lADOAGrG5M4A_OAXzge8qms", "repository": "https://github.com/MetOffice/git_playground", "title": "Test metoffice action for artifactory setup"}, {"content": {"body": "# Description\r\n\r\nTest composite actions", "number": 66, "repository": "MetOffice/git_playground", "title": "Test composite", "type": "PullRequest", "url": "https://github.com/MetOffice/git_playground/pull/66"}, "id": "PVTI_lADOAGrG5M4A_OAXzge-PAs", "repository": "https://github.com/MetOffice/git_playground", "title": "Test composite"}, {"assignees": ["yaswant"], "code Review": "james-bruten-mo", "content": {"body": "# PR Summary\r\n\r\nCode Reviewer: @james-bruten-mo \r\n\r\nThe current cla-process workflow is probably good enough, but I feel that can be simplified/refactored significantly. (Disclaimer: I am still thinking and learning as we go!)\r\n\r\nThis PR keeps the original workflow and adds the refactored version so that we can compare side-by-side.\r\n\r\n[Promise.allSettled()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise/allSettled) for your reference \ud83d\ude04 \r\n\r\n", "number": 96, "repository": "MetOffice/git_playground", "title": "Refactor CLA check workflow", "type": "PullRequest", "url": "https://github.com/MetOffice/git_playground/pull/96"}, "id": "PVTI_lADOAGrG5M4A_OAXzgg7UQg", "labels": ["cla-signed"], "repository": "https://github.com/MetOffice/git_playground", "reviewers": ["james-bruten-mo"], "title": "Refactor CLA check workflow"}, {"assignees": ["yaswant"], "content": {"body": "Little optimisation to speed-up Code QC action.", "number": 27, "repository": "MetOffice/growss", "title": "Optimise validation action", "type": "PullRequest", "url": "https://github.com/MetOffice/growss/pull/27"}, "id": "PVTI_lADOAGrG5M4A_OAXzghMYH0", "labels": ["CI"], "repository": "https://github.com/MetOffice/growss", "status": "SciTech Review", "title": "Optimise validation action"}, {"assignees": ["yaswant"], "content": {"body": "# PR Summary\r\n\r\nSci Tech Reviewer: \r\nCode Reviewer: \r\n", "number": 99, "repository": "MetOffice/git_playground", "title": "Demo growss build/deploy workflows", "type": "PullRequest", "url": "https://github.com/MetOffice/git_playground/pull/99"}, "id": "PVTI_lADOAGrG5M4A_OAXzghQCy4", "labels": ["cla-required"], "repository": "https://github.com/MetOffice/git_playground", "status": "SciTech Review", "title": "Demo growss build/deploy workflows"}, {"assignees": ["Pierre-siddall"], "code Review": "james-bruten-mo", "content": {"body": "Tests the Fortran linting reusable workflow in growss and thereby closes #100.\r\n", "number": 101, "repository": "MetOffice/git_playground", "title": "Test fortran linter", "type": "PullRequest", "url": "https://github.com/MetOffice/git_playground/pull/101"}, "id": "PVTI_lADOAGrG5M4A_OAXzghY6mc", "labels": ["enhancement", "cla-signed", "CI", "contributor"], "repository": "https://github.com/MetOffice/git_playground", "reviewers": ["james-bruten-mo"], "status": "Code Review", "title": "Test fortran linter"}, {"assignees": ["yaswant"], "content": {"body": "Closes #499 \r\n\r\nNote: GitHub explicitly blocks access to private workflows from public forks. This PR is to demonstrate that.\r\n\r\nSolutions: \r\nConvert\r\n- growss to _public_, or **now done** and the action runs okay, but takes >10s slower (highlights pip vs uv)\r\n- ~~simulation-systems to _internal_~~", "number": 500, "repository": "MetOffice/simulation-systems", "title": "Use reusable workflow to build and deploy sphinx docs", "type": "PullRequest", "url": "https://github.com/MetOffice/simulation-systems/pull/500"}, "id": "PVTI_lADOAGrG5M4A_OAXzghhhQo", "labels": [":blue_book:Documentation"], "repository": "https://github.com/MetOffice/simulation-systems", "status": "SciTech Review", "title": "Use reusable workflow to build and deploy sphinx docs"}, {"assignees": ["dcaseGH"], "code Review": "cameronbateman-mo", "content": {"body": "I'll do docs at the end - at the moment is still work in prog but started PR to help review with MO git/cylc/rose stem experts\r\n\r\n# PR Summary\r\n\r\nSci/Tech Reviewer: @james-bruten-mo \r\nCode Reviewer: @cameronbateman-mo \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's style guidelines\r\n- [ ] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n- [ ] If editing `rose-meta/jules-shared` then have you supplied a linked UM PR?\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the JULES rose-stem suite\r\n- [ ] If shared files have been modified, I have run the UM and LFRic Apps rose\r\n stem suites\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 15, "repository": "MetOffice/jules", "title": "JASMIN site migration for JULES - git", "type": "PullRequest", "url": "https://github.com/MetOffice/jules/pull/15"}, "id": "PVTI_lADOAGrG5M4A_OAXzgiM9qU", "repository": "https://github.com/MetOffice/jules", "reviewers": ["james-bruten-mo"], "sciTech Review": "james-bruten-mo", "status": "SciTech Review", "title": "JASMIN site migration for JULES - git"}, {"assignees": ["mo-rickywong"], "code Review": "MatthewHambley", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @allynt\r\nCode Reviewer: @MatthewHambley \r\n\r\nThis PR is to allow users more direct access to the namelist configuration values from\r\nFortran object (rather than global module scope) while maintaining it's read-only nature.\r\ne.g.\r\n`modeldb%config%%MyNamelistMember()`\r\n\r\nThis PR is linked to LFRic-core trac ticket #4702, which provides more details on the change itself\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (eg. API changes) I have also run the LFRic Apps test suite\r\n using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (eg. PSyKAl-lite, Kernel\r\n interface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 175, "repository": "MetOffice/lfric_core", "title": "Reworked Configuration Namelist Access API", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/175"}, "id": "PVTI_lADOAGrG5M4A_OAXzgiZyxI", "labels": ["cla-signed"], "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["MatthewHambley", "stevemullerworth", "mike-hobson", "andrewcoughtrie", "EdHone", "MatthewHambley", "allynt", "MatthewHambley"], "sciTech Review": "allynt", "status": "SciTech Review", "title": "Reworked Configuration Namelist Access API"}, {"assignees": ["yaswant"], "code Review": "james-bruten-mo", "content": {"body": "Since this is a public repository, it makes sense to add some GitHub Copilot instructions for simulation-systems to guide contributors and Copilot.", "number": 529, "repository": "MetOffice/simulation-systems", "title": "Add GitHub Copilot instructions", "type": "PullRequest", "url": "https://github.com/MetOffice/simulation-systems/pull/529"}, "id": "PVTI_lADOAGrG5M4A_OAXzgieVuU", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/simulation-systems", "reviewers": ["james-bruten-mo"], "status": "Done", "title": "Add GitHub Copilot instructions"}, {"assignees": ["yaswant"], "code Review": "jennyhickson", "content": {"body": "Add an option to deploy html documentation locally to users `~/public_html/simulation-systems/` via `make clean deploy` command.\r\n\r\nAlso take this opportunity to update `config.py` ", "number": 530, "repository": "MetOffice/simulation-systems", "title": "Local deploy config", "type": "PullRequest", "url": "https://github.com/MetOffice/simulation-systems/pull/530"}, "id": "PVTI_lADOAGrG5M4A_OAXzgiebbQ", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/simulation-systems", "reviewers": ["jennyhickson", "jennyhickson"], "status": "Done", "title": "Local deploy config"}, {"assignees": ["james-bruten-mo"], "code Review": "jennyhickson", "content": {"body": "Tweaks for the UM release instructions", "number": 531, "repository": "MetOffice/simulation-systems", "title": "update um release instructions", "type": "PullRequest", "url": "https://github.com/MetOffice/simulation-systems/pull/531"}, "id": "PVTI_lADOAGrG5M4A_OAXzgifuu8", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/simulation-systems", "reviewers": ["jennyhickson", "jennyhickson"], "status": "Done", "title": "update um release instructions"}, {"assignees": ["james-bruten-mo"], "code Review": "jennyhickson", "content": {"body": "The rsync of kgo takes _much_ longer to the EXZ than it does to the 2nd host zone (not surprisingly!). So switch around the order of the rsyncs so that the 2nd host zone is done first. This makes it slightly less likely that the shared user authentication will have timed out.", "number": 146, "repository": "MetOffice/SimSys_Scripts", "title": "switch rsyncs", "type": "PullRequest", "url": "https://github.com/MetOffice/SimSys_Scripts/pull/146"}, "id": "PVTI_lADOAGrG5M4A_OAXzgifv8c", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/SimSys_Scripts", "reviewers": ["jennyhickson"], "status": "Done", "title": "switch rsyncs"}, {"assignees": ["jennyhickson"], "code Review": "james-bruten-mo", "content": {"body": "# Description\r\n\r\n## Summary\r\n\r\nAdd the ability to capture the current project data. This overrides test.json which can then be used with test mode to debug or examine closer. \r\n\r\nAlso added a print while in test mode to print fuller information about all reviews discovered to stdout. \r\n\r\n## Changes\r\n\r\n_List the major changes made in this pull request._\r\n\r\n## Dependency\r\n\r\n_List dependent changes. Can use build-group logic here._\r\n\r\n## Impact\r\n\r\n_Discuss any potential impacts this feature may have on existing functionalities._\r\n\r\n## Issues addressed\r\n\r\nResolves\r\n\r\n_List issue(s) related to this PR._\r\n\r\n## Coordinated merge\r\n\r\n_Specify any coordinated merges here._\r\n\r\n\r\n## Checklist\r\n\r\n- [x ] I have performed a self-review of my own changes\r\n", "number": 147, "repository": "MetOffice/SimSys_Scripts", "title": "Workload debug", "type": "PullRequest", "url": "https://github.com/MetOffice/SimSys_Scripts/pull/147"}, "id": "PVTI_lADOAGrG5M4A_OAXzgigYaI", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/SimSys_Scripts", "reviewers": ["james-bruten-mo"], "status": "Done", "title": "Workload debug"}, {"content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @mike-hobson \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (eg. API changes) I have also run the LFRic Apps test suite\r\n using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (eg. PSyKAl-lite, Kernel\r\n interface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 182, "repository": "MetOffice/lfric_core", "title": "Codeowners update", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/182"}, "id": "PVTI_lADOAGrG5M4A_OAXzgigxXk", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["mike-hobson"], "status": "Done", "title": "Codeowners update"}, {"assignees": ["james-bruten-mo"], "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @jennyhickson \r\n\r\n\r\n\r\nSome issues have been identified with the source extraction of the local build script.\r\nIf anyone is experiencing them, then they can be avoided by using the `-c` command line option to point at a local core source.\r\n@DrTVockerodtMO - I've tested locally and it looks like it works, but feel free to check.\r\n\r\n\r\n\r\n- closes #42 \r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\nMyself and Terry have tested the local build script now works\r\n\r\n- [ ] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have tests been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any psyclone related code (eg. PsyKAl-lite, Kernal\r\n inteface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [x] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [x] Documentation is complete and accurate\r\n- [x] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n", "number": 43, "repository": "MetOffice/lfric_apps", "title": "fix local build script", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/43"}, "id": "PVTI_lADOAGrG5M4A_OAXzgig0XM", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["jennyhickson"], "status": "Done", "title": "fix local build script"}, {"assignees": ["james-bruten-mo"], "code Review": "yaswant", "content": {"body": "At the moment we get a `cla-signed` label, even when the developer has already signed the cla on base. I'd strongly argue we should only get a `cla-signed` label in the PRs where the developer is signing the cla. Otherwise it'll just become meaningless noise", "number": 46, "repository": "MetOffice/growss", "title": "remove labelling when cla already signed on base", "type": "PullRequest", "url": "https://github.com/MetOffice/growss/pull/46"}, "id": "PVTI_lADOAGrG5M4A_OAXzgilBmY", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/growss", "reviewers": ["yaswant"], "status": "Done", "title": "remove labelling when cla already signed on base"}, {"assignees": ["james-bruten-mo"], "code Review": "jennyhickson", "content": {"body": "Some advice about using passphrases with ssh keys for test suites", "number": 534, "repository": "MetOffice/simulation-systems", "title": "SSH Passphrase Advice", "type": "PullRequest", "url": "https://github.com/MetOffice/simulation-systems/pull/534"}, "id": "PVTI_lADOAGrG5M4A_OAXzgilIpg", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/simulation-systems", "reviewers": ["jennyhickson"], "status": "Done", "title": "SSH Passphrase Advice"}, {"assignees": ["james-bruten-mo"], "code Review": "yaswant", "content": {"body": "# PR Summary\r\n\r\nCode Reviewer: @yaswant\r\n\r\n\r\n\r\nAdd in a shumlib build to the CI checks to allow testing of other mule libraries.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] This change does not introduce security vulnerabilities\r\n- [x] I have reviewed the code for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 14, "repository": "MetOffice/mule", "title": "add shumlib testing", "type": "PullRequest", "url": "https://github.com/MetOffice/mule/pull/14"}, "id": "PVTI_lADOAGrG5M4A_OAXzgilpZg", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/mule", "reviewers": ["yaswant", "yaswant"], "status": "Done", "title": "add shumlib testing"}, {"content": {"body": "Code Reviewer: @allynt\r\n\r\n# PR Summary\r\n\r\nIn light of recent confusion displayed by science developers\r\nI've added some words to try and explain why we test and\r\nfurther details on what we should be testing.\r\n\r\n## Code Quality Checklist\r\n\r\n- [X] I have performed a self-review of my own code\r\n- [X] My code follows the project's\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [X] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (eg. API changes) I have also run the LFRic Apps test suite\r\n using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n## Documentation\r\n\r\n- [X] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (eg. PSyKAl-lite, Kernel\r\n interface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)", "number": 185, "repository": "MetOffice/lfric_core", "title": "Add some words about the reason for testing", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/185"}, "id": "PVTI_lADOAGrG5M4A_OAXzgimF7A", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["allynt", "allynt"], "status": "Done", "title": "Add some words about the reason for testing"}, {"code Review": "james-bruten-mo", "content": {"body": "# Description\r\n\r\n## Summary\r\n\r\nOn FCM we always fetched the latest version of SimSys_Scripts, but this means check_macro_chains will now always fail as the latest version has been updated to use git. Since people are still running rose-stem on FCM as part of finishing reviews and migrating I'm making the script fail in a more obvious and cleaner way in this case. I'm checking for fcm with the presence of \"dependencies.sh\" since this has been removed in favour of \"dependencies.yaml\" in the git repos. \r\n\r\n## Testing\r\n\r\nThe script currently fails like this: https://cylchub/services/cylc-review/view/jennifer.hickson?&suite=apps_trunk%2Frun1&no_fuzzy_time=0&path=log/job/1/macro_chains_checker/01/job.err\r\n\r\nwith my check the error now looks like this:\r\n\r\nhttps://cylchub/services/cylc-review/view/jennifer.hickson?&suite=apps_trunk%2Frun5&no_fuzzy_time=0&path=log/job/1/macro_chains_checker/01/job.err\r\n\r\n## Checklist\r\n\r\n- [x ] I have performed a self-review of my own changes\r\n", "number": 148, "repository": "MetOffice/SimSys_Scripts", "title": "check_macro_chains to fail gracefully on FCM", "type": "PullRequest", "url": "https://github.com/MetOffice/SimSys_Scripts/pull/148"}, "id": "PVTI_lADOAGrG5M4A_OAXzgimes0", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/SimSys_Scripts", "reviewers": ["james-bruten-mo"], "status": "Done", "title": "check_macro_chains to fail gracefully on FCM"}, {"assignees": ["tinyendian"], "code Review": "EdHone", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @MetBenjaminWent \r\nCode Reviewer: @EdHone \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have tests been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n* I can only run a subset of Rose stem tests on Monsoon due to various difficulties, but the `ex1a_omp_developer` succeed, and the `run_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_gnu_fast-debug-64bit` and `run_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_gnu_fast-debug-64bit` tests no longer fail their KGO tests (these failures were caused by PSyclone dropping the `!DIR$ IVDEP` compiler directives)\r\n* Successful builds with the `meto-ex1a` and `esnz-cascade` optimisation platforms on the ESNZ Cascade HPC\r\n\r\n### trac.log\r\n\r\n* Unable to run the full test suite on Monsoon\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [x] If you have edited any psyclone related code (eg. PsyKAl-lite, Kernal\r\n inteface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n**Note:** The email address does not work, unfortunately\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 53, "repository": "MetOffice/lfric_apps", "title": "Additional PC2 optimisations for NG-ARCH", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/53"}, "id": "PVTI_lADOAGrG5M4A_OAXzgioBpQ", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["MetBenjaminWent"], "sciTech Review": "MetBenjaminWent ", "status": "SciTech Review", "title": "Additional PC2 optimisations for NG-ARCH"}, {"assignees": ["mo-lottieturner"], "code Review": "mo-alistairp", "content": {"body": "closes #30 \r\n# PR Summary\r\n\r\nSci/Tech Reviewer: @james-bruten-mo \r\nCode Reviewer: @mo-alistairp \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource\r\n and have tests been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n# Test Suite Results - lfric_apps - t30_remove_populate_graph_lfricinputs/run2\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | t30_remove_populate_graph_lfricinputs/run2 |\r\n| Suite User | charlotte.turner |\r\n| Workflow Start | 2025-12-16T13:42:33 |\r\n| Groups Run | developer', 'lfricinputs', 'lfricinputs_weekly |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [mo-lottieturner/lfric_apps@remove_populate_graph_lfricinputs](https://github.com/mo-lottieturner/lfric_apps/tree/remove_populate_graph_lfricinputs) | False |\r\n| lfric_core | [MetOffice/lfric_core@2025.12.1](https://github.com/MetOffice/lfric_core/tree/2025.12.1) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n
\r\n:white_check_mark: succeeded tasks - 1181\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| build_adjoint_tests_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_azspice_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_ex1a_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_adjoint_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_coupled_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gravity_wave_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_gravity_wave_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_gravity_wave_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_gravity_wave_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_gravity_wave_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gungho_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_gungho_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| build_gungho_model_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_model_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| build_gungho_model_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_gungho_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_tests_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_tests_integration_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_jules_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric2lfric_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric2lfric_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_full-debug-32bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_production-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_fast-debug-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_full-debug-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_production-32bit | succeeded |\r\n| build_lfric_coupled_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_linear_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_linear_model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_model_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_linear_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_mesh_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_name_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_ngarch_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_ngarch_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_ngarch_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_ngarch_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_physics_schemes_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_physics_schemes_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_shallow_water_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_shallow_water_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_shallow_water_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_shallow_water_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_solver_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_solver_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_solver_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_transport_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_transport_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_transport_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| check_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200_realorog-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200_realorog-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-nrun-v-crun | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-nrun-v-crun | succeeded |\r\n| check_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_runge-kutta-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_runge-kutta-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_semi-implicit-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_semi-implicit-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_nwp_gal9-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_nwp_gal9-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jules_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-seuk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_chem_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_chem_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9_debug-C12_azspice_gnu_full-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_debug-C12_ex1a_cce_full-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_noukca_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_noukca_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_zero-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_zero-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| config_dump_checker | succeeded |\r\n| export-source | succeeded |\r\n| export-source_azspice | succeeded |\r\n| export-source_ex1a | succeeded |\r\n| export-weights_azspice | succeeded |\r\n| export-weights_ex1a | succeeded |\r\n| fcm_make2_drivers | succeeded |\r\n| fcm_make2_lfric_coupled_ocean_ex1a_cce_fast-debug-64bit | succeeded |\r\n| fcm_make_drivers | succeeded |\r\n| fcm_make_lfric_coupled_ocean_ex1a_cce_fast-debug-64bit | succeeded |\r\n| fcm_make_lfric_coupled_river_ex1a_cce_fast-debug-64bit | succeeded |\r\n| generate_weights_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_lfric2um-performance-C224L70_N512L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet_lbc_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-falklands_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-nwp_gal9-N320L70_C224L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-var_seuk_lam_azspice_weightgen_script | succeeded |\r\n| global_variables_checker | succeeded |\r\n| housekeep_azspice | succeeded |\r\n| housekeep_ex1a | succeeded |\r\n| local_build_test | succeeded |\r\n| macro_chains_checker | succeeded |\r\n| memory_plot_ex_lfricinputs_lfric2um-performance-C224L70_N512L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| memory_plot_ex_lfricinputs_lfric2um-performance-C224L70_N512L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| memory_plot_ex_lfricinputs_um2lfric-nwp_gal9-N320L70_C224L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| memory_plot_ex_lfricinputs_um2lfric-nwp_gal9-N320L70_C224L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| perftools-export_gungho_model_baroclinic-profile_perf-C24_MG_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| pert_compare_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| pert_compare_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_cylinder_xz-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_cylinder_xz-BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| python_unit_tests | succeeded |\r\n| remote-init_azspice | succeeded |\r\n| remote-init_ex1a | succeeded |\r\n| rose-stem_lint_checker | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-var_seuk_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-var_seuk_lam_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_adjoint_tests_canned_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_canned_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_azspice_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_ex1a_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_varying_ls-C12_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_adjoint_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_coupled_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gravity_wave_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_gravity_wave_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gungho_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_gungho_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit_pert_off | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit_pert_off | succeeded |\r\n| run_gungho_model_baroclinic-profile_perf-C24_MG_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_gungho_model_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200_realorog-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200_realorog-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_no-timestep-method-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_no-timestep-method-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_runge-kutta-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_runge-kutta-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_semi-implicit-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_semi-implicit-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_gungho_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_tests_integration_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_nwp_gal9-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_nwp_gal9-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jules_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jules_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-seuk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric_atm_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_canned_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_chem_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_chem_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C12_azspice_gnu_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C12_ex1a_cce_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-performance-C224L70_N512L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-performance-C224L70_N512L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C224L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C224L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-var_seuk_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-var_seuk_lam_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_linear_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_linear_model_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_zero-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_zero-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_linear_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_mesh_BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP2x2-50000x50000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1500x1500_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_C16_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C224_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C224_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_rot_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_rot_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_falklands_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_falklands_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_seuk_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_seuk_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_var_seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_var_seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_cylinder_xz-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_cylinder_xz-BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_name_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_ngarch_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_physics_schemes_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_physics_schemes_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_shallow_water_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_shallow_water_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_transport_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| site_validator | succeeded |\r\n| style_checker | succeeded |\r\n| test_launch-exe | succeeded |\r\n| validate_rose_meta | succeeded |\r\n
\r\n\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any psyclone related code (eg. PsyKAl-lite, Kernal\r\n inteface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [x] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [x] Documentation is complete and accurate\r\n- [x] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n", "number": 54, "repository": "MetOffice/lfric_apps", "title": "Removing populate_graph_lfricinputs.cylc", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/54"}, "id": "PVTI_lADOAGrG5M4A_OAXzgipEyc", "labels": ["cla-signed", "LFRic Inputs"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["james-bruten-mo", "mo-alistairp", "mo-alistairp"], "sciTech Review": "james-bruten-mo", "status": "Done", "title": "Removing populate_graph_lfricinputs.cylc"}, {"assignees": ["ukmo-juan-castillo"], "code Review": "mo-lottieturner", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @mike-hobson \r\nCode Reviewer: @mo-lottieturner \r\n\r\nThis is the git version of svn ticket 1016: https://code.metoffice.gov.uk/trac/lfric_apps/ticket/1016\r\n\r\nLfric2lfric is now capable of generating lbc files. It reads a netcdf file containing a set of field timeseries, and regrids them into a destination mesh. At the moment the destination mesh is the full regional mesh, and in the output we have lbc values at the rim of the domain, and zeroes in the inside.\r\n\r\nI had to create a dedicated clock for OASIS instead of using the modeldb clock, given that now we are reading a time series and we can not change the time at will. The source of data used to create lbcs is copied locally, so it will have to be copied to a central location. I could not link the clock ticking to file advance because this seems to work only for a single XIOS context, but we have two.\r\n\r\nOne of the existing KGOs had to be updated. The reason is that the KGO test was using the wrong mesh, and this error was introduced in ticket 621: https://code.metoffice.gov.uk/trac/lfric_apps/ticket/621\r\n\r\n- closes #48 \r\n- fixes #48 \r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource\r\n and have tests been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n### trac.log\r\n\r\n# Test Suite Results - lfric_apps - test_lfric2lfric_lbc/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | test_lfric2lfric_lbc/run1 |\r\n| Suite User | juan.m.castillo |\r\n| Workflow Start | 2026-01-12T10:16:53 |\r\n| Groups Run | all |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [ukmo-juan-castillo/lfric_apps@test_lfric2lfric_lbc](https://github.com/ukmo-juan-castillo/lfric_apps/tree/test_lfric2lfric_lbc) | False |\r\n| lfric_core | [MetOffice/lfric_core@2025.12.1](https://github.com/MetOffice/lfric_core/tree/2025.12.1) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n
\r\n:white_check_mark: succeeded tasks - 1461\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| build_adjoint_tests_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_azspice_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_ex1a_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_adjoint_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_coupled_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gravity_wave_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_gravity_wave_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_gravity_wave_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_gravity_wave_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_gravity_wave_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gungho_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_gungho_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| build_gungho_model_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_model_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| build_gungho_model_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_gungho_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_tests_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_tests_integration_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_jules_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric2lfric_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric2lfric_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_full-debug-32bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_production-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_fast-debug-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_full-debug-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_production-32bit | succeeded |\r\n| build_lfric_atm_ex1a_gnu_fast-debug-32bit | succeeded |\r\n| build_lfric_coupled_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_linear_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_linear_model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_model_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_linear_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_mesh_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_name_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_ngarch_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_ngarch_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_ngarch_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_ngarch_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_physics_schemes_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_physics_schemes_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_shallow_water_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_shallow_water_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_shallow_water_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_shallow_water_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_socrates_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_socrates_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_solver_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_solver_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_solver_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_transport_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_transport_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_transport_ex1a_cce_production-64bit | succeeded |\r\n| build_transport_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| check_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200_realorog-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200_realorog-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-nrun-v-crun | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-nrun-v-crun | succeeded |\r\n| check_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_runge-kutta-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_runge-kutta-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_semi-implicit-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_semi-implicit-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_nwp_gal9-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_nwp_gal9-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_op_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jules_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-seuk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-uk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-uk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-ukv_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-ukv_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric_atm_aquaplanet-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_aquaplanet-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_camembert_case3_gj1214b-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_camembert_case3_gj1214b-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_1T-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_2T-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_4T-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_chem-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9_chem-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9_chem_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_chem_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_comp_tran_ref_3d_l120-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_hd209458b-C24_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_hd209458b-C24_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_casim-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_casim-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_coma9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_coma9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_comorph_dev-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_comorph_dev-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_comorph_tb-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C48_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9-pert-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9-pert-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_coarse_aero-C48_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_coarse_aero-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_coarse_aero_threaded-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_coarse_aero_threaded-C48_MG_ex1a_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_da-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9_da-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9_debug-C12_azspice_gnu_full-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_debug-C12_ex1a_cce_full-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_debug-C48_MG_azspice_gnu_full-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_debug-C48_MG_ex1a_cce_full-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_eda-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9_eda-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9_eda_jada-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9_eda_jada-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9_mol-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9_mol-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9_noukca_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_noukca_1T-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_noukca_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_noukca_2T-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_noukca_2T-C48_MG_ex1a_cce_full-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_noukca_4T-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_thai_ben1-C48_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_thai_ben1-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_zero-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_zero-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| config_dump_checker | succeeded |\r\n| export-source | succeeded |\r\n| export-source_azspice | succeeded |\r\n| export-source_ex1a | succeeded |\r\n| export-weights_azspice | succeeded |\r\n| export-weights_ex1a | succeeded |\r\n| fcm_make2_drivers | succeeded |\r\n| fcm_make2_lfric_coupled_ocean_ex1a_cce_fast-debug-64bit | succeeded |\r\n| fcm_make_drivers | succeeded |\r\n| fcm_make_lfric_coupled_ocean_ex1a_cce_fast-debug-64bit | succeeded |\r\n| fcm_make_lfric_coupled_river_ex1a_cce_fast-debug-64bit | succeeded |\r\n| generate_weights_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam-lbc_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet_lbc_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-falklands_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-var_seuk_lam_azspice_weightgen_script | succeeded |\r\n| global_variables_checker | succeeded |\r\n| housekeep_azspice | succeeded |\r\n| housekeep_ex1a | succeeded |\r\n| local_build_test | succeeded |\r\n| macro_chains_checker | succeeded |\r\n| memory_plot_ex_lfric_atm_nwp_gal9-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| perftools-export_gungho_model_baroclinic-profile_perf-C24_MG_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| pert_compare_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| pert_compare_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| pert_compare_lfric_atm_nwp_gal9-pert-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| pert_compare_lfric_atm_nwp_gal9-pert-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_agnesi_nhyd_cart-BiP360x8-400x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C192_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C96_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bell_3d_cart-BiP300x200-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bryan_fritsch-moist-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_earth-like-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_grabowski-clark-BiP200x10-18x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_held-suarez-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_moist_baroclinic_orog-C48_MG_ex1a_gnu_fast-debug-64bit-crun3 | succeeded |\r\n| plot_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-smag-l300-BiP200x8-5x5_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C96_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar3d_cart-BiP200x200-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_25m-BiP2048x8-25x25_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_50m-BiP1024x8-50x50_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_warm3dbubble-BiP100x100-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_lfric_atm_aquaplanet-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_aquaplanet-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_camembert_case3_gj1214b-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_camembert_case3_gj1214b-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9_chem-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9_chem-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_casim-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_casim-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_coma9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_coma9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_comorph_dev-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_comorph_dev-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_comorph_tb-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C48_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_nwp_gal9-pert-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_nwp_gal9-pert-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_nwp_gal9_coarse_aero-C48_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_nwp_gal9_coarse_aero-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_nwp_gal9_da-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9_da-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9_eda-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9_eda-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9_eda_jada-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9_eda_jada-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9_mol-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9_mol-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_thai_ben1-C48_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_thai_ben1-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_cylinder_xz-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_cylinder_xz-BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C96_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi_ffsl-C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi_ffsl-C96_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi_koren-C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi_koren-C96_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi_mono-C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi_mono-C96_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_vortex_plane-BiP64x64-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_vortex_plane-BiP64x64-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_vortex_plane_vi-BiP64x64-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_vortex_plane_vi-BiP64x64-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_curl_free_reversible_xz_ffsl_bigcfl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_curl_free_reversible_xz_ffsl_bigcfl-BiP100x10-20x20_ex1a_cce_production-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl_bigcfl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl_bigcfl-BiP100x10-20x20_ex1a_cce_production-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C96_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C96_ex1a_cce_production-64bit | succeeded |\r\n| plot_transport_deformation_2d_ffsl_bigcfl-C96_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_ffsl_bigcfl-C96_ex1a_cce_production-64bit | succeeded |\r\n| plot_transport_divergent_2d_cylinder_ffsl_bigcfl-C96_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_divergent_2d_cylinder_ffsl_bigcfl-C96_ex1a_cce_production-64bit | succeeded |\r\n| plot_transport_eternal_fountain_xz_ffsl_bigcfl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_eternal_fountain_xz_ffsl_bigcfl-BiP100x10-20x20_ex1a_cce_production-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_bigcfl-C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_bigcfl-C48_ex1a_cce_production-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| python_unit_tests | succeeded |\r\n| remote-init_azspice | succeeded |\r\n| remote-init_ex1a | succeeded |\r\n| rose-stem_lint_checker | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-var_seuk_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-var_seuk_lam_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_adjoint_tests_canned_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_canned_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_azspice_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_ex1a_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_varying_ls-C12_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_adjoint_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_coupled_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gravity_wave_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_gravity_wave_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gungho_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_gungho_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_agnesi_nhyd_cart-BiP360x8-400x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C192_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C96_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit_pert_off | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit_pert_off | succeeded |\r\n| run_gungho_model_baroclinic-profile_perf-C24_MG_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bell_3d_cart-BiP300x200-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bryan_fritsch-moist-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_gungho_model_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200_realorog-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200_realorog-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_earth-like-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_gh_profile_omp6_6nodes-C192_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_grabowski-clark-BiP200x10-18x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_held-suarez-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_moist_baroclinic_orog-C48_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_moist_baroclinic_orog-C48_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_moist_baroclinic_orog-C48_MG_ex1a_gnu_fast-debug-64bit-crun2 | succeeded |\r\n| run_gungho_model_moist_baroclinic_orog-C48_MG_ex1a_gnu_fast-debug-64bit-crun3 | succeeded |\r\n| run_gungho_model_no-timestep-method-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_no-timestep-method-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-smag-l300-BiP200x8-5x5_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_runge-kutta-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_runge-kutta-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C96_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar3d_cart-BiP200x200-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_semi-implicit-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_semi-implicit-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_25m-BiP2048x8-25x25_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_50m-BiP1024x8-50x50_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_warm3dbubble-BiP100x100-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_gungho_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_tests_integration_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_nwp_gal9-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_nwp_gal9-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_op_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_op_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jules_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jules_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-seuk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-uk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-uk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-ukv_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-ukv_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric_atm_aquaplanet-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_aquaplanet-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_aquaplanet-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_aquaplanet-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_camembert_case3_gj1214b-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_camembert_case3_gj1214b-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_camembert_case3_gj1214b-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_camembert_case3_gj1214b-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_canned_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_1T-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_2T-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_4T-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_chem-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9_chem-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9_chem-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9_chem-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9_chem_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_chem_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_comp_tran_ref_3d_l120-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_hd209458b-C24_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_hd209458b-C24_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_hd209458b-C24_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_hd209458b-C24_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_casim-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_casim-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_casim-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_casim-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_coma9-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_coma9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_coma9-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_coma9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_comorph_dev-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_comorph_dev-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_comorph_dev-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_comorph_dev-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_comorph_tb-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_comorph_tb-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C48_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9-pert-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9-pert-C12_azspice_gnu_fast-debug-32bit_pert_off | succeeded |\r\n| run_lfric_atm_nwp_gal9-pert-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9-pert-C12_ex1a_cce_fast-debug-32bit_pert_off | succeeded |\r\n| run_lfric_atm_nwp_gal9_coarse_aero-C48_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_coarse_aero-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_coarse_aero_threaded-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_coarse_aero_threaded-C48_MG_ex1a_cce_production-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_coarse_aero_threaded-C48_MG_ex1a_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_da-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_da-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_da-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_da-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C12_azspice_gnu_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C12_ex1a_cce_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C48_MG_azspice_gnu_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C48_MG_ex1a_cce_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_eda-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_eda-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_eda-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_eda-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_eda_jada-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_eda_jada-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_eda_jada-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_eda_jada-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_ls_and_jedi-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_ls_and_jedi-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_mol-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_mol-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_mol-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_mol-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_1T-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_2T-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_2T-C48_MG_ex1a_cce_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_4T-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_4T-C48_MG_ex1a_cce_production-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3-seuk_ls_and_jedi_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_ral3-seuk_ls_and_jedi_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_thai_ben1-C48_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_thai_ben1-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-var_seuk_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-var_seuk_lam_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_linear_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_linear_model_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_zero-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_zero-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_linear_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_mesh_BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x100-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP1024x8-50x50_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x10-18x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x200-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x8-5x5_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP2048x8-25x25_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP2x2-50000x50000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x200-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP360x8-400x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1500x1500_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_C16_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C192_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_rot_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_rot_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C96_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C96_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C96_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_falklands_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_falklands_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_uk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_uk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_ukv_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_ukv_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_seuk_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_seuk_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_var_seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_var_seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_cylinder_xz-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_cylinder_xz-BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_name_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_ngarch_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_physics_schemes_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_physics_schemes_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_shallow_water_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C96_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi_ffsl-C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi_ffsl-C96_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi_koren-C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi_koren-C96_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi_mono-C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi_mono-C96_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_shallow_water_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_shallow_water_vortex_plane-BiP64x64-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_vortex_plane-BiP64x64-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_vortex_plane_vi-BiP64x64-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_vortex_plane_vi-BiP64x64-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_socrates_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_socrates_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_solver_bicgstab-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_transport_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_curl_free_reversible_xz_ffsl_bigcfl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_curl_free_reversible_xz_ffsl_bigcfl-BiP100x10-20x20_ex1a_cce_production-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl_bigcfl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl_bigcfl-BiP100x10-20x20_ex1a_cce_production-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C96_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C96_ex1a_cce_production-64bit | succeeded |\r\n| run_transport_deformation_2d_ffsl_bigcfl-C96_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_ffsl_bigcfl-C96_ex1a_cce_production-64bit | succeeded |\r\n| run_transport_divergent_2d_cylinder_ffsl_bigcfl-C96_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_divergent_2d_cylinder_ffsl_bigcfl-C96_ex1a_cce_production-64bit | succeeded |\r\n| run_transport_eternal_fountain_xz_ffsl_bigcfl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_eternal_fountain_xz_ffsl_bigcfl-BiP100x10-20x20_ex1a_cce_production-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_bigcfl-C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_bigcfl-C48_ex1a_cce_production-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| site_validator | succeeded |\r\n| style_checker | succeeded |\r\n| test_launch-exe | succeeded |\r\n| validate_rose_meta | succeeded |\r\n
\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any psyclone related code (eg. PsyKAl-lite, Kernal\r\n inteface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 55, "repository": "MetOffice/lfric_apps", "title": "Generation of lfric2lfric lbcs", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/55"}, "id": "PVTI_lADOAGrG5M4A_OAXzgipHzg", "labels": ["cla-signed", "LFRic Inputs"], "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["mike-hobson", "mike-hobson", "mo-lottieturner", "mo-lottieturner"], "sciTech Review": "mike-hobson", "status": "Code Review", "title": "Generation of lfric2lfric lbcs"}, {"assignees": ["MetBenjaminWent"], "code Review": "mo-lottieturner", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @oakleybrunt\r\nCode Reviewer: @mo-lottieturner \r\n\r\nLinked issue: #49\r\nLinked FCM Trac ticket: [Apps:900](https://code.metoffice.gov.uk/trac/lfric_apps/ticket/900)\r\nLinked planned Documentation update: #25 \r\nPlanned follow up tech debt ticket: #86\r\n\r\n\r\n\r\n\r\nThe primary goal of this ticket is to lift aspects like the options list, which was common across scripts, but initialised for a particular script, and collate this to allow the creation of a global script.\r\nAll of the newer scripts were often using copies of identical code.\r\nThis ticket creates a bucket script which is read in, and given a specific file name, the bespoke sections, originally across multiple scripts, are utilised by a single file. \r\nIt also mandates in the make system that if we want to use PSyclone on a file, without a script, it needs to be explicitly stated, otherwise the global script is used. \r\nTo ensure this rigidity, the no script line is moved to a script which is only called if the user specifies the file needs a PSyclone pass without a file. \r\nTo accommodate this change, and ensure other sites are not adversely affected, I've done a bit of housekeeping other the sites directories, adding dummy global scripts where required, or sym-linking whole directories like Transmute's PSyKal cousin. \r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource\r\n and have tests been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n# Test Suite Results - lfric_apps - transmute_explicit_list_overrides2/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | transmute_explicit_list_overrides2/run1 |\r\n| Suite User | benjamin.went |\r\n| Workflow Start | 2025-12-18T10:08:35 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [MetBenjaminWent/lfric_apps@transmute_explicit_list_overrides](https://github.com/MetBenjaminWent/lfric_apps/tree/transmute_explicit_list_overrides) | False |\r\n| lfric_core | [MetOffice/lfric_core@2025.12.1](https://github.com/MetOffice/lfric_core/tree/2025.12.1) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n
\r\n:white_check_mark: succeeded tasks - 1104\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| build_adjoint_tests_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_azspice_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_ex1a_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_adjoint_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_coupled_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gravity_wave_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_gravity_wave_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_gravity_wave_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_gravity_wave_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_gravity_wave_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gungho_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_gungho_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| build_gungho_model_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_model_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| build_gungho_model_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_gungho_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_tests_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_tests_integration_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_jules_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric2lfric_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric2lfric_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_full-debug-32bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_production-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_fast-debug-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_full-debug-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_production-32bit | succeeded |\r\n| build_lfric_coupled_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_linear_model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_model_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_linear_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_mesh_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_name_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_ngarch_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_ngarch_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_ngarch_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_ngarch_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_physics_schemes_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_physics_schemes_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_shallow_water_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_shallow_water_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_shallow_water_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_shallow_water_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_solver_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_solver_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_solver_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_transport_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_transport_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_transport_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| check_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200_realorog-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200_realorog-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-nrun-v-crun | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-nrun-v-crun | succeeded |\r\n| check_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_runge-kutta-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_runge-kutta-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_semi-implicit-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_semi-implicit-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_nwp_gal9-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_nwp_gal9-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jules_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-seuk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_chem_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_chem_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9_debug-C12_azspice_gnu_full-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_debug-C12_ex1a_cce_full-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_noukca_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_noukca_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_zero-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_zero-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| config_dump_checker | succeeded |\r\n| export-source | succeeded |\r\n| export-source_azspice | succeeded |\r\n| export-source_ex1a | succeeded |\r\n| export-weights_azspice | succeeded |\r\n| export-weights_ex1a | succeeded |\r\n| fcm_make2_drivers | succeeded |\r\n| fcm_make2_lfric_coupled_ocean_ex1a_cce_fast-debug-64bit | succeeded |\r\n| fcm_make_drivers | succeeded |\r\n| fcm_make_lfric_coupled_ocean_ex1a_cce_fast-debug-64bit | succeeded |\r\n| fcm_make_lfric_coupled_river_ex1a_cce_fast-debug-64bit | succeeded |\r\n| generate_weights_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet_lbc_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-falklands_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_azspice_weightgen_script | succeeded |\r\n| global_variables_checker | succeeded |\r\n| local_build_test | succeeded |\r\n| macro_chains_checker | succeeded |\r\n| perftools-export_gungho_model_baroclinic-profile_perf-C24_MG_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| pert_compare_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| pert_compare_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_cylinder_xz-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_cylinder_xz-BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| python_unit_tests | succeeded |\r\n| remote-init_azspice | succeeded |\r\n| remote-init_ex1a | succeeded |\r\n| rose-stem_lint_checker | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_adjoint_tests_canned_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_canned_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_azspice_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_ex1a_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_varying_ls-C12_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_adjoint_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_coupled_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gravity_wave_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_gravity_wave_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gungho_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_gungho_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit_pert_off | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit_pert_off | succeeded |\r\n| run_gungho_model_baroclinic-profile_perf-C24_MG_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_gungho_model_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200_realorog-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200_realorog-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_no-timestep-method-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_no-timestep-method-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_runge-kutta-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_runge-kutta-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_semi-implicit-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_semi-implicit-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_gungho_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_tests_integration_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_nwp_gal9-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_nwp_gal9-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jules_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jules_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-seuk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric_atm_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_canned_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_chem_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_chem_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C12_azspice_gnu_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C12_ex1a_cce_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_linear_model_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_zero-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_zero-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_linear_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_mesh_BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP2x2-50000x50000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1500x1500_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_C16_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_rot_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_rot_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_falklands_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_falklands_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_seuk_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_seuk_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_cylinder_xz-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_cylinder_xz-BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_name_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_ngarch_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_physics_schemes_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_physics_schemes_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_shallow_water_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_shallow_water_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_transport_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| site_validator | succeeded |\r\n| style_checker | succeeded |\r\n| test_launch-exe | succeeded |\r\n| validate_rose_meta | succeeded |\r\n
\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [x] If you have edited any psyclone related code (eg. PsyKAl-lite, Kernal\r\n inteface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [x] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [x] Documentation is complete and accurate\r\n- [x] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n", "number": 56, "repository": "MetOffice/lfric_apps", "title": "Transmute explicit no Transformation list and global.py", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/56"}, "id": "PVTI_lADOAGrG5M4A_OAXzgipIv4", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["oakleybrunt", "oakleybrunt", "mo-lottieturner"], "sciTech Review": "oakleybrunt", "status": "Code Review", "title": "Transmute explicit no Transformation list and global.py"}, {"assignees": ["MetBenjaminWent"], "code Review": "mo-lucy-gordon", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @jcsmeto\r\nCode Reviewer: @mo-lucy-gordon \r\n\r\nIssue: https://github.com/MetOffice/lfric_apps/issues/50\r\nPR migrated from FCM ticket: https://code.metoffice.gov.uk/trac/lfric_apps/ticket/1076\r\n**BLOCKED BY PR** #56 \r\n\r\n\r\n\r\n\r\nDue to the size and complexity of boundry layer, this ticket is a sub-section of 'easy-win' files. \r\nWe are aiming to utilise PSyclone for all of optimisation in LFRic. \r\nThese files contain quite simple structures and loops, a local script has been created for most of the times. \r\n* It removes any non performant j loops. \r\n* spans a file wide parallel section\r\n* Adds OMP Dos inside\r\n* Not all files in this opt use this local script\r\n* Small bespoke needs per file which use the local script have been lifted, emulating the global script\r\n\r\n\r\n\r\n\r\n**BLOCKED BY PR** #56 \r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have tests been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n# Test Suite Results - lfric_apps - part_bdry_lyr_psycloned/run2\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | part_bdry_lyr_psycloned/run2 |\r\n| Suite User | benjamin.went |\r\n| Workflow Start | 2025-12-16T14:23:31 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [MetBenjaminWent/lfric_apps@part_bdry_lyr_psycloned](https://github.com/MetBenjaminWent/lfric_apps/tree/part_bdry_lyr_psycloned) | False |\r\n| lfric_core | [MetOffice/lfric_core@2025.12.1](https://github.com/MetOffice/lfric_core/tree/2025.12.1) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n
\r\n:x: failed tasks - 1\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| run_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | failed |\r\n
\r\n
\r\n:white_check_mark: succeeded tasks - 1101\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| build_adjoint_tests_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_azspice_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_ex1a_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_adjoint_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_coupled_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gravity_wave_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_gravity_wave_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_gravity_wave_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_gravity_wave_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_gravity_wave_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gungho_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_gungho_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| build_gungho_model_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_model_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| build_gungho_model_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_gungho_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_tests_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_tests_integration_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_jules_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric2lfric_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric2lfric_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_full-debug-32bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_production-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_fast-debug-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_full-debug-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_production-32bit | succeeded |\r\n| build_lfric_coupled_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_linear_model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_model_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_linear_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_mesh_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_name_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_ngarch_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_ngarch_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_ngarch_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_ngarch_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_physics_schemes_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_physics_schemes_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_shallow_water_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_shallow_water_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_shallow_water_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_shallow_water_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_solver_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_solver_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_solver_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_transport_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_transport_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_transport_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| check_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200_realorog-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200_realorog-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-nrun-v-crun | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-nrun-v-crun | succeeded |\r\n| check_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_runge-kutta-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_runge-kutta-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_semi-implicit-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_semi-implicit-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_nwp_gal9-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_nwp_gal9-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jules_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-seuk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_chem_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_chem_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9_debug-C12_azspice_gnu_full-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_debug-C12_ex1a_cce_full-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_noukca_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_noukca_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_zero-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_zero-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| config_dump_checker | succeeded |\r\n| export-source | succeeded |\r\n| export-source_azspice | succeeded |\r\n| export-source_ex1a | succeeded |\r\n| export-weights_azspice | succeeded |\r\n| export-weights_ex1a | succeeded |\r\n| fcm_make2_drivers | succeeded |\r\n| fcm_make2_lfric_coupled_ocean_ex1a_cce_fast-debug-64bit | succeeded |\r\n| fcm_make_drivers | succeeded |\r\n| fcm_make_lfric_coupled_ocean_ex1a_cce_fast-debug-64bit | succeeded |\r\n| fcm_make_lfric_coupled_river_ex1a_cce_fast-debug-64bit | succeeded |\r\n| generate_weights_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet_lbc_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-falklands_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_azspice_weightgen_script | succeeded |\r\n| global_variables_checker | succeeded |\r\n| local_build_test | succeeded |\r\n| macro_chains_checker | succeeded |\r\n| perftools-export_gungho_model_baroclinic-profile_perf-C24_MG_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| pert_compare_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| pert_compare_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_cylinder_xz-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_cylinder_xz-BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| python_unit_tests | succeeded |\r\n| remote-init_azspice | succeeded |\r\n| remote-init_ex1a | succeeded |\r\n| rose-stem_lint_checker | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_adjoint_tests_canned_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_canned_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_azspice_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_ex1a_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_varying_ls-C12_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_adjoint_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_coupled_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gravity_wave_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_gravity_wave_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gungho_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_gungho_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit_pert_off | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit_pert_off | succeeded |\r\n| run_gungho_model_baroclinic-profile_perf-C24_MG_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_gungho_model_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200_realorog-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200_realorog-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_no-timestep-method-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_no-timestep-method-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_runge-kutta-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_runge-kutta-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_semi-implicit-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_semi-implicit-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_gungho_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_tests_integration_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_nwp_gal9-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_nwp_gal9-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jules_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jules_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-seuk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric_atm_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_canned_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_chem_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_chem_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C12_azspice_gnu_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C12_ex1a_cce_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_linear_model_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_zero-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_zero-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_linear_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_mesh_BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP2x2-50000x50000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1500x1500_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_C16_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_rot_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_rot_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_falklands_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_falklands_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_seuk_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_seuk_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_cylinder_xz-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_cylinder_xz-BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_name_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_ngarch_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_physics_schemes_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_physics_schemes_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_shallow_water_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_shallow_water_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_transport_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| site_validator | succeeded |\r\n| style_checker | succeeded |\r\n| test_launch-exe | succeeded |\r\n| validate_rose_meta | succeeded |\r\n
\r\n\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [x] If you have edited any psyclone related code (eg. PsyKAl-lite, Kernal\r\n inteface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [x] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [x] Documentation is complete and accurate\r\n- [x] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n", "number": 57, "repository": "MetOffice/lfric_apps", "title": "Some of Boundary Layer PSyclone-d", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/57"}, "id": "PVTI_lADOAGrG5M4A_OAXzgipJBQ", "labels": ["cla-modified"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["jcsmeto", "mo-lucy-gordon", "christophermaynard", "mo-lucy-gordon"], "sciTech Review": "jcsmeto", "status": "Approved", "title": "Some of Boundary Layer PSyclone-d"}, {"code Review": "yaswant", "content": {"body": "Added FAQ about SSH issues and detatched forks and clarify the SSH setup instructions. I tried to keep the theory of linking to Github documentation, while also giving a more defined list of what needs to be done. \r\n\r\nPrevious heading style didn't like long questions so switched it up. \r\n\r\nBuilt version can be seen here https://wwwspice/~jennifer.hickson/simulation_systems/more_faqs/html/WorkingPractices/gh_authorisation.html and https://wwwspice/~jennifer.hickson/simulation_systems/more_faqs/html/git_faq.html", "number": 537, "repository": "MetOffice/simulation-systems", "title": "add new FAQs", "type": "PullRequest", "url": "https://github.com/MetOffice/simulation-systems/pull/537"}, "id": "PVTI_lADOAGrG5M4A_OAXzgipTjc", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/simulation-systems", "reviewers": ["yaswant"], "status": "Done", "title": "add new FAQs"}, {"assignees": ["mo-lottieturner"], "code Review": "allynt", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @allynt \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (eg. API changes) I have also run the LFRic Apps test suite\r\n using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n# Test Suite Results - lfric_core - t187_adding_logging_to_tweak_iodef/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | t187_adding_logging_to_tweak_iodef/run1 |\r\n| Suite User | charlotte.turner |\r\n| Workflow Start | 2025-12-16T16:48:44 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| lfric_core | [mo-lottieturner/lfric_core@adding_logging_to_tweak_iodef](https://github.com/mo-lottieturner/lfric_core/tree/adding_logging_to_tweak_iodef) | False |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n
\r\n:white_check_mark: succeeded tasks - 372\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| build_coupled_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_coupled_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_coupled_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_coupled_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_coupling_unit_tests_azspice_gnu_32bit | succeeded |\r\n| build_coupling_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_coupling_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| build_coupling_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_driver_unit_tests_azspice_gnu_32bit | succeeded |\r\n| build_driver_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_driver_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| build_driver_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_infrastructure_integration_tests_azspice_gnu_32bit | succeeded |\r\n| build_infrastructure_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_infrastructure_integration_tests_ex1a_cce_32bit | succeeded |\r\n| build_infrastructure_integration_tests_ex1a_cce_64bit | succeeded |\r\n| build_infrastructure_unit_tests_azspice_gnu_32bit | succeeded |\r\n| build_infrastructure_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_infrastructure_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| build_infrastructure_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_io_demo_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_io_demo_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_io_demo_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_io_demo_ex1a_cce_fast-debug-32bit | succeeded |\r\n| build_io_demo_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_io_demo_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_io_demo_ex1a_gnu_fast-debug-32bit | succeeded |\r\n| build_io_demo_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_io_demo_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_io_demo_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_lbc_demo_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lbc_demo_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lbc_demo_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lbc_demo_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric_xios_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_lfric_xios_integration_tests_ex1a_cce_64bit | succeeded |\r\n| build_lfric_xios_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_lfric_xios_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_mesh_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_tools_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_tools_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_mesh_tools_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_mesh_tools_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_mesh_tools_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_tools_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_mesh_tools_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_science_unit_tests_azspice_gnu_32bit | succeeded |\r\n| build_science_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_science_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| build_science_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_simple_diffusion_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_simple_diffusion_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_simple_diffusion_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_simple_diffusion_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_simple_diffusion_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_simple_diffusion_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_simple_diffusion_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_skeleton_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_skeleton_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_skeleton_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_skeleton_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_skeleton_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_skeleton_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_skeleton_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| check_coupled_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_coupled_default-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_coupled_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_coupled_default-C12_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_io_demo_default-C24_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_io_demo_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_io_demo_default-C24_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_io_demo_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_io_demo_multifile-C24_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_io_demo_multifile-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_io_demo_multifile-C24_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_io_demo_multifile-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_io_demo_multifile-C24_ex1a_gnu_fast-debug-32bit | succeeded |\r\n| check_io_demo_multifile-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_ConstantLBC-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_ConstantLBC-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_lbc_demo_ConstantLBC-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_ConstantLBC-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_1x1P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_1x1P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_2x2P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_2x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_8x2P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_8x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_lbc_demo_default-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_default-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_lbc_demo_default-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_default-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c1_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c2_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c2_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c3_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c3_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c3_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-maps_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-maps_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-maps_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op-nonuniform_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op-nonuniform_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op-nonuniform_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-rotated_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-rotated_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-rotated_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_equator-band_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_equator-band_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_equator-band_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_equator_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_equator_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_equator_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_mesh_tools_falklands_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_falklands_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_falklands_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_london-model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_london-model_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_london-model_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_nzlam4_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_nzlam4_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_nzlam4_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-bi-periodic_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-bi-periodic_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-bi-periodic_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-maps_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-maps_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-maps_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-non-periodic_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-non-periodic_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-non-periodic_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-op-lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-op-lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-op-lam_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-centres_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-centres_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-centres_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-nodes_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-nodes_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-nodes_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-points_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-points_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-points_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-x_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-x_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-x_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-y_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-y_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-y_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_polar_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_polar_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_polar_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_uk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_uk_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_uk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_var-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_var-seuk_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_var-seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_simple_diffusion_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_simple_diffusion_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_simple_diffusion_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| check_skeleton_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_skeleton_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_skeleton_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| config_dump_checker | succeeded |\r\n| export-source | succeeded |\r\n| export-source_azspice | succeeded |\r\n| export-source_ex1a | succeeded |\r\n| global_variables_checker | succeeded |\r\n| housekeep_azspice | succeeded |\r\n| housekeep_ex1a | succeeded |\r\n| python_unit_tests | succeeded |\r\n| remote-init_azspice | succeeded |\r\n| remote-init_ex1a | succeeded |\r\n| rose-stem_lint_checker | succeeded |\r\n| run_coupled_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_coupled_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_coupled_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_coupled_default-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_coupled_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_coupled_default-C12_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_coupling_unit_tests_azspice_gnu_32bit | succeeded |\r\n| run_coupling_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_coupling_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| run_coupling_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_driver_unit_tests_azspice_gnu_32bit | succeeded |\r\n| run_driver_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_driver_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| run_driver_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_infrastructure_integration_tests_azspice_gnu_32bit | succeeded |\r\n| run_infrastructure_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_infrastructure_integration_tests_ex1a_cce_32bit | succeeded |\r\n| run_infrastructure_integration_tests_ex1a_cce_64bit | succeeded |\r\n| run_infrastructure_unit_tests_azspice_gnu_32bit | succeeded |\r\n| run_infrastructure_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_infrastructure_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| run_infrastructure_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_io_demo_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_io_demo_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_io_demo_default-C24_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_io_demo_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_io_demo_default-C24_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_io_demo_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_io_demo_multifile-C24_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_io_demo_multifile-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_io_demo_multifile-C24_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_io_demo_multifile-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_io_demo_multifile-C24_ex1a_gnu_fast-debug-32bit | succeeded |\r\n| run_io_demo_multifile-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_io_demo_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_io_demo_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_lbc_demo_ConstantLBC-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_ConstantLBC-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lbc_demo_ConstantLBC-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_ConstantLBC-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_IntegerFields-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_IntegerFields-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lbc_demo_IntegerFields-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_IntegerFields-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_1x1P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_1x1P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_2x2P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_2x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_8x2P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_8x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lbc_demo_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_default-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_default-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lbc_demo_default-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_default-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric_xios_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_lfric_xios_integration_tests_ex1a_cce_64bit | succeeded |\r\n| run_lfric_xios_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_lfric_xios_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_mesh_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_1x1P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_2x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_8x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_canned_cubedsphere_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_canned_planar_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c1_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c2_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c2_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c3_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c3_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c3_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-maps_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-maps_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-maps_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op-nonuniform_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op-nonuniform_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op-nonuniform_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-rotated_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-rotated_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-rotated_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_equator-band_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_equator-band_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_equator-band_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_equator_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_equator_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_equator_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_mesh_tools_falklands_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_falklands_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_falklands_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_london-model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_london-model_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_london-model_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_nzlam4_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_nzlam4_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_nzlam4_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-bi-periodic_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-bi-periodic_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-bi-periodic_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-maps_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-maps_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-maps_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-non-periodic_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-non-periodic_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-non-periodic_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-op-lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-op-lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-op-lam_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-centres_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-centres_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-centres_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-nodes_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-nodes_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-nodes_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-points_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-points_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-points_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-x_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-x_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-x_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-y_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-y_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-y_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_polar_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_polar_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_polar_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_uk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_uk_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_uk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_mesh_tools_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_mesh_tools_var-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_var-seuk_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_var-seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_science_unit_tests_azspice_gnu_32bit | succeeded |\r\n| run_science_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_science_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| run_science_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_simple_diffusion_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_simple_diffusion_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_simple_diffusion_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_simple_diffusion_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_simple_diffusion_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_simple_diffusion_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_simple_diffusion_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_skeleton_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_skeleton_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_skeleton_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_skeleton_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_skeleton_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_skeleton_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_skeleton_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| site_validator | succeeded |\r\n| style_checker | succeeded |\r\n| validate_rose_meta | succeeded |\r\n
\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (eg. PSyKAl-lite, Kernel\r\n interface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 187, "repository": "MetOffice/lfric_core", "title": "Adding logging to tweak_iodef", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/187"}, "id": "PVTI_lADOAGrG5M4A_OAXzgip0Is", "labels": ["cla-signed"], "repository": "https://github.com/MetOffice/lfric_core", "status": "SciTech Review", "title": "Adding logging to tweak_iodef"}, {"content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @stevemullerworth \r\nCode Reviewer: @mike-hobson \r\n\r\n\r\n\r\n\r\nUpdated the readme file at the root of the repository to include a short introduction with some useful links and badges which describe the contents of the repository. The badges are generated by [shields.io](https://shields.io/) a common mechanism for doing so, the content produced by this page is under the [CC0](https://github.com/badges/shields?tab=CC0-1.0-1-ov-file) license.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (eg. API changes) I have also run the LFRic Apps test suite\r\n using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (eg. PSyKAl-lite, Kernel\r\n interface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 188, "repository": "MetOffice/lfric_core", "title": "Update root Readme file.", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/188"}, "id": "PVTI_lADOAGrG5M4A_OAXzgip2Q0", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["yaswant", "mike-hobson"], "status": "Done", "title": "Update root Readme file."}, {"assignees": ["MetBenjaminWent"], "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's style guidelines\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have tests been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any psyclone related code (eg. PsyKAl-lite, Kernal\r\n inteface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 62, "repository": "MetOffice/lfric_apps", "title": "Boundary Layer - bdy_expl2 optimisations", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/62"}, "id": "PVTI_lADOAGrG5M4A_OAXzgiqBQo", "labels": ["cla-required"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "status": "SciTech Review", "title": "Boundary Layer - bdy_expl2 optimisations"}, {"content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: NA\r\nCode Reviewer: @james-bruten-mo \r\n\r\n\r\n\r\nI am removing the user details sectin from issue templates. We can contact someone using their GitHub mention (typing @username), which sends a notification to the user. \r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have tests been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any psyclone related code (eg. PsyKAl-lite, Kernal\r\n inteface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 63, "repository": "MetOffice/lfric_apps", "title": "Remove user contact question from issue template", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/63"}, "id": "PVTI_lADOAGrG5M4A_OAXzgiqEBU", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["james-bruten-mo"], "status": "Done", "title": "Remove user contact question from issue template"}, {"content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: NA\r\nCode Reviewer: @andrewcoughtrie \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (eg. API changes) I have also run the LFRic Apps test suite\r\n using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (eg. PSyKAl-lite, Kernel\r\n interface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [x] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 189, "repository": "MetOffice/lfric_core", "title": "Remove contact details from Issue template", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/189"}, "id": "PVTI_lADOAGrG5M4A_OAXzgiqGFo", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["andrewcoughtrie"], "status": "Done", "title": "Remove contact details from Issue template"}, {"assignees": ["andrewcoughtrie"], "code Review": "stevemullerworth", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @stevemullerworth \r\n\r\n\r\n\r\n\r\nThe GitHub codeowners file has a copy paste error that meant a directory in infrastructure was given owners twice, the second one should have been a different directory.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\nIt isn't actually possible to test this though GitHub is happy the file is a valid CODEOWNERS file.\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (eg. API changes) I have also run the LFRic Apps test suite\r\n using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (eg. PSyKAl-lite, Kernel\r\n interface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [x] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [x] Documentation is complete and accurate\r\n- [x] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n", "number": 190, "repository": "MetOffice/lfric_core", "title": "Fixed duplication of directory ownership, should have been a differen\u2026", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/190"}, "id": "PVTI_lADOAGrG5M4A_OAXzgiqVsY", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["yaswant", "stevemullerworth"], "sciTech Review": "yaswant", "status": "Done", "title": "Fixed duplication of directory ownership, should have been a differen\u2026"}, {"assignees": ["jasonjunweilyu"], "code Review": "MetBenjaminWent", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @mo-alistairp \r\nCode Reviewer: @MetBenjaminWent \r\nCC: @hiker \r\n\r\n\r\n\r\n\r\nThis completes the work of NGARCH stochastic physics optimization for CPU and GPU by migrating from fcm to git to be merged to `main`. Details of the completed work are documented in ticket:543.\r\n\r\n- closes #64 \r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have tests been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\nSince only the rose-stem climate config is now using stochastic physics, I have run the `lfric_atm_clim_gal9_nomg-C12_gadi_intel_fast-debug-64bit` available on NCI GADI. The build and run jobs finished successfully. For KGO verification, since KGOs on GADI have not been updated, I have compared the KGO with the one produced by running the trunk version I forked from and confirmed that they are identical. \r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [x] If you have edited any psyclone related code (eg. PsyKAl-lite, Kernal\r\n inteface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [x] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [x] Documentation is complete and accurate\r\n- [x] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n", "number": 65, "repository": "MetOffice/lfric_apps", "title": "Stochastic Physics CPU and GPU Optimizations - NGARCH", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/65"}, "id": "PVTI_lADOAGrG5M4A_OAXzgiroos", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["mo-alistairp", "mo-alistairp", "MetBenjaminWent", "MetBenjaminWent", "MetBenjaminWent"], "sciTech Review": "mo-alistairp", "status": "Done", "title": "Stochastic Physics CPU and GPU Optimizations - NGARCH"}, {"assignees": ["james-bruten-mo"], "code Review": "paulfield2024", "content": {"body": "Add initial setup files for monc", "number": 1, "repository": "MetOffice/monc", "title": "add files for monc", "type": "PullRequest", "url": "https://github.com/MetOffice/monc/pull/1"}, "id": "PVTI_lADOAGrG5M4A_OAXzgisJ_g", "repository": "https://github.com/MetOffice/monc", "reviewers": ["yaswant", "paulfield2024"], "sciTech Review": "yaswant", "status": "Done", "title": "add files for monc"}, {"code Review": "mo-rickywong", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @andrewcoughtrie \r\nCode Reviewer: @mo-rickywong\r\n\r\n\r\n\r\nIf the configuration file provided to an LFRic application doesn't exist, the application can fail in an uncontrolled way. This change makes the fail more graceful.\r\n\r\n- linked MetOffice/lfric_apps#67\r\n\r\n- closes #167\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [X] I have performed a self-review of my own code\r\n- [X] My code follows the project's\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [X] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [X] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [X] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [X] If required (eg. API changes) I have also run the LFRic Apps test suite\r\n using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [X] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [X] Any new tests have been assigned an appropriate amount of compute resource\r\n and have been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n# Test Suite Results - lfric_core - check_config_name_core/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | check_config_name_core/run1 |\r\n| Suite User | mike.hobson |\r\n| Workflow Start | 2025-12-17T08:03:59 |\r\n| Groups Run | suite_default |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| lfric_core | [mike-hobson/lfric_core@check_config_name](https://github.com/mike-hobson/lfric_core/tree/check_config_name) | False |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n
\r\n:white_check_mark: succeeded tasks - 372\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| build_coupled_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_coupled_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_coupled_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_coupled_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_coupling_unit_tests_azspice_gnu_32bit | succeeded |\r\n| build_coupling_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_coupling_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| build_coupling_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_driver_unit_tests_azspice_gnu_32bit | succeeded |\r\n| build_driver_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_driver_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| build_driver_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_infrastructure_integration_tests_azspice_gnu_32bit | succeeded |\r\n| build_infrastructure_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_infrastructure_integration_tests_ex1a_cce_32bit | succeeded |\r\n| build_infrastructure_integration_tests_ex1a_cce_64bit | succeeded |\r\n| build_infrastructure_unit_tests_azspice_gnu_32bit | succeeded |\r\n| build_infrastructure_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_infrastructure_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| build_infrastructure_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_io_demo_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_io_demo_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_io_demo_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_io_demo_ex1a_cce_fast-debug-32bit | succeeded |\r\n| build_io_demo_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_io_demo_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_io_demo_ex1a_gnu_fast-debug-32bit | succeeded |\r\n| build_io_demo_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_io_demo_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_io_demo_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_lbc_demo_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lbc_demo_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lbc_demo_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lbc_demo_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric_xios_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_lfric_xios_integration_tests_ex1a_cce_64bit | succeeded |\r\n| build_lfric_xios_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_lfric_xios_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_mesh_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_tools_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_tools_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_mesh_tools_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_mesh_tools_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_mesh_tools_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_tools_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_mesh_tools_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_science_unit_tests_azspice_gnu_32bit | succeeded |\r\n| build_science_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_science_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| build_science_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_simple_diffusion_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_simple_diffusion_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_simple_diffusion_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_simple_diffusion_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_simple_diffusion_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_simple_diffusion_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_simple_diffusion_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_skeleton_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_skeleton_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_skeleton_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_skeleton_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_skeleton_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_skeleton_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_skeleton_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| check_coupled_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_coupled_default-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_coupled_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_coupled_default-C12_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_io_demo_default-C24_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_io_demo_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_io_demo_default-C24_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_io_demo_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_io_demo_multifile-C24_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_io_demo_multifile-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_io_demo_multifile-C24_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_io_demo_multifile-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_io_demo_multifile-C24_ex1a_gnu_fast-debug-32bit | succeeded |\r\n| check_io_demo_multifile-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_ConstantLBC-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_ConstantLBC-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_lbc_demo_ConstantLBC-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_ConstantLBC-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_1x1P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_1x1P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_2x2P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_2x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_8x2P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_8x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_lbc_demo_default-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_default-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_lbc_demo_default-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_default-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c1_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c2_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c2_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c3_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c3_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c3_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-maps_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-maps_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-maps_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op-nonuniform_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op-nonuniform_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op-nonuniform_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-rotated_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-rotated_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-rotated_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_equator-band_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_equator-band_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_equator-band_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_equator_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_equator_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_equator_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_mesh_tools_falklands_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_falklands_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_falklands_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_london-model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_london-model_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_london-model_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_nzlam4_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_nzlam4_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_nzlam4_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-bi-periodic_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-bi-periodic_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-bi-periodic_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-maps_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-maps_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-maps_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-non-periodic_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-non-periodic_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-non-periodic_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-op-lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-op-lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-op-lam_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-centres_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-centres_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-centres_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-nodes_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-nodes_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-nodes_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-points_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-points_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-points_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-x_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-x_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-x_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-y_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-y_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-y_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_polar_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_polar_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_polar_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_uk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_uk_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_uk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_var-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_var-seuk_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_var-seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_simple_diffusion_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_simple_diffusion_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_simple_diffusion_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| check_skeleton_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_skeleton_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_skeleton_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| config_dump_checker | succeeded |\r\n| export-source | succeeded |\r\n| export-source_azspice | succeeded |\r\n| export-source_ex1a | succeeded |\r\n| global_variables_checker | succeeded |\r\n| housekeep_azspice | succeeded |\r\n| housekeep_ex1a | succeeded |\r\n| python_unit_tests | succeeded |\r\n| remote-init_azspice | succeeded |\r\n| remote-init_ex1a | succeeded |\r\n| rose-stem_lint_checker | succeeded |\r\n| run_coupled_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_coupled_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_coupled_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_coupled_default-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_coupled_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_coupled_default-C12_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_coupling_unit_tests_azspice_gnu_32bit | succeeded |\r\n| run_coupling_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_coupling_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| run_coupling_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_driver_unit_tests_azspice_gnu_32bit | succeeded |\r\n| run_driver_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_driver_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| run_driver_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_infrastructure_integration_tests_azspice_gnu_32bit | succeeded |\r\n| run_infrastructure_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_infrastructure_integration_tests_ex1a_cce_32bit | succeeded |\r\n| run_infrastructure_integration_tests_ex1a_cce_64bit | succeeded |\r\n| run_infrastructure_unit_tests_azspice_gnu_32bit | succeeded |\r\n| run_infrastructure_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_infrastructure_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| run_infrastructure_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_io_demo_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_io_demo_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_io_demo_default-C24_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_io_demo_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_io_demo_default-C24_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_io_demo_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_io_demo_multifile-C24_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_io_demo_multifile-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_io_demo_multifile-C24_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_io_demo_multifile-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_io_demo_multifile-C24_ex1a_gnu_fast-debug-32bit | succeeded |\r\n| run_io_demo_multifile-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_io_demo_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_io_demo_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_lbc_demo_ConstantLBC-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_ConstantLBC-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lbc_demo_ConstantLBC-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_ConstantLBC-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_IntegerFields-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_IntegerFields-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lbc_demo_IntegerFields-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_IntegerFields-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_1x1P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_1x1P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_2x2P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_2x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_8x2P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_8x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lbc_demo_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_default-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_default-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lbc_demo_default-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_default-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric_xios_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_lfric_xios_integration_tests_ex1a_cce_64bit | succeeded |\r\n| run_lfric_xios_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_lfric_xios_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_mesh_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_1x1P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_2x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_8x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_canned_cubedsphere_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_canned_planar_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c1_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c2_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c2_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c3_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c3_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c3_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-maps_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-maps_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-maps_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op-nonuniform_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op-nonuniform_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op-nonuniform_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-rotated_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-rotated_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-rotated_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_equator-band_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_equator-band_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_equator-band_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_equator_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_equator_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_equator_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_mesh_tools_falklands_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_falklands_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_falklands_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_london-model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_london-model_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_london-model_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_nzlam4_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_nzlam4_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_nzlam4_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-bi-periodic_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-bi-periodic_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-bi-periodic_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-maps_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-maps_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-maps_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-non-periodic_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-non-periodic_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-non-periodic_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-op-lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-op-lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-op-lam_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-centres_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-centres_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-centres_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-nodes_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-nodes_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-nodes_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-points_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-points_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-points_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-x_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-x_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-x_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-y_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-y_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-y_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_polar_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_polar_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_polar_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_uk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_uk_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_uk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_mesh_tools_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_mesh_tools_var-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_var-seuk_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_var-seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_science_unit_tests_azspice_gnu_32bit | succeeded |\r\n| run_science_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_science_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| run_science_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_simple_diffusion_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_simple_diffusion_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_simple_diffusion_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_simple_diffusion_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_simple_diffusion_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_simple_diffusion_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_simple_diffusion_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_skeleton_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_skeleton_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_skeleton_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_skeleton_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_skeleton_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_skeleton_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_skeleton_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| site_validator | succeeded |\r\n| style_checker | succeeded |\r\n| validate_rose_meta | succeeded |\r\n
\r\n\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [X] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (eg. PSyKAl-lite, Kernel\r\n interface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [x] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n", "number": 191, "repository": "MetOffice/lfric_core", "title": "Fail gracefully if the configuration namelist doesn't exist", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/191"}, "id": "PVTI_lADOAGrG5M4A_OAXzgisRIQ", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["stevemullerworth", "andrewcoughtrie", "mo-rickywong", "EdHone", "MatthewHambley", "MatthewHambley"], "sciTech Review": "andrewcoughtrie", "status": "Done", "title": "Fail gracefully if the configuration namelist doesn't exist"}, {"assignees": ["james-bruten-mo"], "content": {"body": "We need 3 checkouts:\r\n\r\n* Base branch - This allows us to check that the CONTRIBUTORS file has been signed on base.\r\n* PR branch without merging - This allows us to check if the CONTRIBUTORS file has been signed on the base branch\r\n* PR branch merged into Base - this allows us to check if the resulting CONTRIBUTORS file will change. If yes, and the developer has signed on base, then fail as modified.\r\n\r\nAgain, targeting develop to test", "number": 47, "repository": "MetOffice/growss", "title": "Remove label", "type": "PullRequest", "url": "https://github.com/MetOffice/growss/pull/47"}, "id": "PVTI_lADOAGrG5M4A_OAXzgisU60", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/growss", "reviewers": ["yaswant", "andrewcoughtrie"], "status": "Done", "title": "Remove label"}, {"content": {"body": "The working-directory syntax takes a relative path ", "number": 48, "repository": "MetOffice/growss", "title": "Remove label", "type": "PullRequest", "url": "https://github.com/MetOffice/growss/pull/48"}, "id": "PVTI_lADOAGrG5M4A_OAXzgisl4Y", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/growss", "status": "Done", "title": "Remove label"}, {"code Review": "mo-rickywong", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @andrewcoughtrie \r\nCode Reviewer: @mo-rickywong \r\n\r\n\r\nThe configuration namelist file is provided from the command line by the infrastructure. to enable graceful failure if the name provided doesn't exist, there have been minor changes to infrastructure routine. This has to be reflected in the calls from all the apps.\r\n\r\n- linked MetOffice/lfric_core#191\r\n\r\n- closes #26 \r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [X] I have performed a self-review of my own code\r\n- [X] My code follows the project's style guidelines\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [X] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [X] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [X] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [X] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [X] Any new tests have been assigned an appropriate amount of compute resource\r\n and have tests been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n# Test Suite Results - lfric_apps - check_config_name_apps/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | check_config_name_apps/run1 |\r\n| Suite User | mike.hobson |\r\n| Workflow Start | 2025-12-17T07:28:49 |\r\n| Groups Run | suite_default |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [mike-hobson/lfric_apps@check_config_name](https://github.com/mike-hobson/lfric_apps/tree/check_config_name) | False |\r\n| lfric_core | [mike-hobson/lfric_core@check_config_name](https://github.com/mike-hobson/lfric_core/tree/check_config_name) | False |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n
\r\n:white_check_mark: succeeded tasks - 1106\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| build_adjoint_tests_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_azspice_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_ex1a_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_adjoint_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_coupled_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gravity_wave_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_gravity_wave_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_gravity_wave_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_gravity_wave_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_gravity_wave_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gungho_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_gungho_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| build_gungho_model_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_model_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| build_gungho_model_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_gungho_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_tests_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_tests_integration_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_jules_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric2lfric_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric2lfric_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_full-debug-32bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_production-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_fast-debug-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_full-debug-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_production-32bit | succeeded |\r\n| build_lfric_coupled_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_linear_model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_model_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_linear_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_mesh_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_name_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_ngarch_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_ngarch_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_ngarch_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_ngarch_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_physics_schemes_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_physics_schemes_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_shallow_water_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_shallow_water_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_shallow_water_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_shallow_water_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_solver_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_solver_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_solver_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_transport_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_transport_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_transport_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| check_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200_realorog-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200_realorog-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-nrun-v-crun | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-nrun-v-crun | succeeded |\r\n| check_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_runge-kutta-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_runge-kutta-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_semi-implicit-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_semi-implicit-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_nwp_gal9-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_nwp_gal9-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jules_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-seuk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_chem_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_chem_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9_debug-C12_azspice_gnu_full-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_debug-C12_ex1a_cce_full-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_noukca_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_noukca_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_zero-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_zero-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| config_dump_checker | succeeded |\r\n| export-source | succeeded |\r\n| export-source_azspice | succeeded |\r\n| export-source_ex1a | succeeded |\r\n| export-weights_azspice | succeeded |\r\n| export-weights_ex1a | succeeded |\r\n| fcm_make2_drivers | succeeded |\r\n| fcm_make2_lfric_coupled_ocean_ex1a_cce_fast-debug-64bit | succeeded |\r\n| fcm_make_drivers | succeeded |\r\n| fcm_make_lfric_coupled_ocean_ex1a_cce_fast-debug-64bit | succeeded |\r\n| fcm_make_lfric_coupled_river_ex1a_cce_fast-debug-64bit | succeeded |\r\n| generate_weights_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet_lbc_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-falklands_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_azspice_weightgen_script | succeeded |\r\n| global_variables_checker | succeeded |\r\n| housekeep_azspice | succeeded |\r\n| housekeep_ex1a | succeeded |\r\n| local_build_test | succeeded |\r\n| macro_chains_checker | succeeded |\r\n| perftools-export_gungho_model_baroclinic-profile_perf-C24_MG_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| pert_compare_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| pert_compare_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_cylinder_xz-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_cylinder_xz-BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| python_unit_tests | succeeded |\r\n| remote-init_azspice | succeeded |\r\n| remote-init_ex1a | succeeded |\r\n| rose-stem_lint_checker | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_adjoint_tests_canned_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_canned_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_azspice_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_ex1a_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_varying_ls-C12_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_adjoint_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_coupled_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gravity_wave_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_gravity_wave_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gungho_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_gungho_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit_pert_off | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit_pert_off | succeeded |\r\n| run_gungho_model_baroclinic-profile_perf-C24_MG_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_gungho_model_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200_realorog-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200_realorog-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_no-timestep-method-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_no-timestep-method-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_runge-kutta-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_runge-kutta-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_semi-implicit-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_semi-implicit-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_gungho_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_tests_integration_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_nwp_gal9-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_nwp_gal9-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jules_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jules_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-seuk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric_atm_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_canned_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_chem_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_chem_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C12_azspice_gnu_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C12_ex1a_cce_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_linear_model_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_zero-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_zero-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_linear_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_mesh_BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP2x2-50000x50000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1500x1500_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_C16_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_rot_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_rot_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_falklands_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_falklands_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_seuk_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_seuk_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_cylinder_xz-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_cylinder_xz-BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_name_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_ngarch_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_physics_schemes_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_physics_schemes_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_shallow_water_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_shallow_water_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_transport_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| site_validator | succeeded |\r\n| style_checker | succeeded |\r\n| test_launch-exe | succeeded |\r\n| validate_rose_meta | succeeded |\r\n
\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [X] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [X] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any psyclone related code (eg. PsyKAl-lite, Kernal\r\n inteface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [x] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [x] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n", "number": 67, "repository": "MetOffice/lfric_apps", "title": "Check config name", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/67"}, "id": "PVTI_lADOAGrG5M4A_OAXzgis7KA", "labels": ["enhancement", "Linked Core", "cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["mo-rickywong"], "sciTech Review": "andrewcoughtrie", "status": "Done", "title": "Check config name"}, {"assignees": ["james-bruten-mo"], "content": {"body": "Use bash -l given recent changes to login scripts\r\nAlso delete deprecated fcm nightly script", "number": 149, "repository": "MetOffice/SimSys_Scripts", "title": "update to use bash -l", "type": "PullRequest", "url": "https://github.com/MetOffice/SimSys_Scripts/pull/149"}, "id": "PVTI_lADOAGrG5M4A_OAXzgis_zo", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/SimSys_Scripts", "reviewers": ["t00sa"], "status": "Done", "title": "update to use bash -l"}, {"content": {"body": "# PR Summary\r\n\r\n**NB - this pull request is currently a placeholder. I am in the process of porting the changes from my mosrs branch to Github.** \r\n\r\nThis pull request summarises changes to the INFERNO fire module made in order to couple it with the WHAM model of human fire use and management. This improves INFERNO's performance significantly. \r\n\r\nEvaluation of the model can be found here (in submission). \r\n[Evaluation_19_11_2025.docx](https://github.com/user-attachments/files/24216215/Evaluation_19_11_2025.docx)\r\n\r\n\r\nThe full overview of WHAM! and the structure of its coupling is described in these three papers:\r\n\r\nModel description: https://gmd.copernicus.org/articles/17/3993/2024/\r\nPrototype coupling and calibration: https://agupubs.onlinelibrary.wiley.com/doi/full/10.1029/2024EF004770\r\nFuture model runs: https://egusphere.copernicus.org/preprints/2025/egusphere-2025-3728/\r\n\r\nAn additional paper, detailing the online coupling is close to submission. \r\n\r\nAlthough this PR allows WHAM! to be coupled with JULES in a dynamic way, it is not a full tight coupling (yet). Rather, outputs from the WHAM! model are passed as ancillaries. These are then updated in line with the changing distribution of plant functional types in JULES. \r\n\r\nSci/Tech Reviewer: Eddy Robertson\r\nCode Reviewer: \r\n\r\n\r\n\r\n\r\n\r\nThere are three fundamental changes made to the code. \r\n\r\n1. The first (ignitions) is toggled using a new ignitions mode\r\n2. The second (managed fire) is on a new switch \"l_inferno_wham\"\r\n3. The third (fire line intensity) is able to run with / without WHAM!. It is set using a new \"fire_mortality_method\" integer that maintains current functionality. \r\n\r\n1) Ignitions mode\r\n- A new ignitions mode is added (4). This specifies that ignitions, or unmanaged fires, are taken from WHAM! outputs. These are the sum of accidental anthropogenic fires, arson (fire use as a weapon under land use conflict) and escaped fires - managed fires that grow out of control.\r\n- Importantly, ignitions from WHAM! take account of the seasonality of human fire use: i.e. they vary monthly, rather than being uniform across the calendar year. \r\n- This also incorporates WHAM! projections of fire suppression (i.e. fire fighting). \r\n\r\n2) Managed fire\r\n- As much as 50% of global burned area is generated by small anthropogenic fires, typically used in livestock farming and for hunting/gathering in savanna ecosystems. \r\n- WHAM! adds these into the model. Setting l_inferno_wham to True switches this functionality on. \r\n- In addition, it also adds the use of road density to adjust mean fire size. This is a simple representation of fragmentation that should increase fire size & burned area in remote regions, whilst reducing it where there is widespread human activity. \r\n- Managed fire use varies month to month in line with WHAM!'s projection of fire use seasonality. (as with ignitions). \r\n- Human fire use for fire risk reduction (i.e. prescribed fire or cultural burning) changes dynamically with tree cover. See, it is lower in wet tropical forests than open savannas. This is updated dynamically based on the PFT distribution at each time step. \r\n\r\n3) Fire line intensity\r\nWork by Olivia Haas (https://iopscience.iop.org/article/10.1088/1748-9326/ac6a69) has demonstrated that fire intensity (Watts emitted per m2 burned) has different drivers to burned area. \r\n\r\nFire intensity is closely related to vegetation mortality. Therefore, a new intensity algorithm was developed that captures the spatio-temporal variation in mortality. This replaces the current parameterisation of mortality as the product of burned area and a scalar value per PFT. \r\n\r\nA new variable \"fire_mortality_method\" is defined with three levels:\r\n1) The original mortality method (per Burton 2019)\r\n2) The Burton method adjusted for saturation moisture. This provides a boundary condition around tropical forests. Too much mortality in tropical forests has been an issue in INFERNO. \r\n3) The new fireline intensity algorithm. I have added a supplementary file that shows the relationships used in this. Important to note is that this can be run with / without WHAM. So, setting fire_mortality_method = 3 & l_inferno_wham = .false. will replace WHAM! inputs into the intensity algorithm with a function of population density. \r\n\r\n[SI1_Intensity_Algorithm_15122025.docx](https://github.com/user-attachments/files/24216049/SI1_Intensity_Algorithm_15122025.docx)\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's style guidelines\r\n- [ ] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n- [ ] If editing `rose-meta/jules-shared` then have you supplied a linked UM PR?\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the JULES rose-stem suite\r\n- [ ] If shared files have been modified, I have run the UM and LFRic Apps rose\r\n stem suites\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## Approvals\r\n\r\nPlease request all relevant approvals. See the CodeOwners.txt file for section\r\nowners.\r\n\r\n### Technical\r\n\r\n- [ ] JULES Code Owner\r\n- [ ] OpenMP\r\n- [ ] River Routing\r\n- [ ] Rose Stem\r\n- [ ] Rose Metadata\r\n- [ ] Upgrade Macros\r\n\r\n### Scientific\r\n\r\n- [ ] Surface\r\n- [ ] Hydrology\r\n- [ ] Vegetation\r\n- [ ] Veg3 RED Demography\r\n- [ ] Biogechemistry\r\n- [ ] Biogenic fluxes\r\n- [x ] Fire\r\n- [ ] Lakes\r\n- [ ] Evaluation\r\n- [ ] Imogen\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 22, "repository": "MetOffice/jules", "title": "Coupling of WHAM! model of human fire use and management with INFERNO", "type": "PullRequest", "url": "https://github.com/MetOffice/jules/pull/22"}, "id": "PVTI_lADOAGrG5M4A_OAXzgitYHw", "labels": ["cla-signed"], "repository": "https://github.com/MetOffice/jules", "status": "SciTech Review", "title": "Coupling of WHAM! model of human fire use and management with INFERNO"}, {"assignees": ["james-bruten-mo"], "code Review": "jennyhickson", "content": {"body": "Andy suggested preventing updates in rulesets for the majority of a release cycle to prevent accidental targeting of the stable branch.\r\nAdd a note to the release instructions to re-enable updates.", "number": 540, "repository": "MetOffice/simulation-systems", "title": "add note to enable stable", "type": "PullRequest", "url": "https://github.com/MetOffice/simulation-systems/pull/540"}, "id": "PVTI_lADOAGrG5M4A_OAXzgitc0Q", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/simulation-systems", "reviewers": ["jennyhickson"], "status": "Done", "title": "add note to enable stable"}, {"assignees": ["tommbendall"], "code Review": "allynt", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @atb1995 \r\nCode Reviewer: @allynt \r\n\r\n\r\n\r\n\r\n\r\nThe `sample_physics_winds_correction` option is broken (see Issue #66). This had not been detected as it is not currently covered by the test-suite.\r\n\r\nThis PR fixes this option and improves on the current situation by making the following changes:\r\n- input fields to the `w3_to_w2_correction_kernel` are declared to depth 2: _this kernel reads from a field with a depth 1 halo and is an INC kernel, so fields being read using stencils must be declared to depth 2 (they are only depth 1 by default)_\r\n- I have unified the `sample_physics_winds_correction` option with the other code to perform the `sample_physics_winds`: _the `sample_physics_winds_correction` option should simply activate the correction routines, but it previously also changed the method of sampling_\r\n- it picks up a correction to the `w3_to_w2_correction` kernel from the Linked PR: https://github.com/MetOffice/lfric_core/pull/221 \r\n- I have turned this option on in an exoplanet rose-stem test to ensure that it is covered by the test-suite\r\n\r\n- Linked to: MetOffice/lfric_core#221\r\n\r\n\r\n\r\n\r\n- Closes: #66 \r\n\r\nTo demonstrate that this is working, I have created an artificial test in which a zonal wind component in W3 was specified to vary with latitude. This was then mapped to W2, with and without the correction option. The following plots show that grid imprinting on the meridional panel edges has been improved.\r\n\r\nSee the small divots on the meridional panel edges:\r\n\"sample_phys_correction\"\r\n\r\nAnd zoomed in on a panel edge:\r\n\"sample_phys_correction_zoom\"\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource\r\n and have tests been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n# Test Suite Results - lfric_apps - smp_phys_wind_correct/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [smp_phys_wind_correct/run1](https://cylchub/services/cylc-review/cycles/thomas.bendall/?suite=smp_phys_wind_correct%2Frun1) |\r\n| Suite User | thomas.bendall |\r\n| Workflow Start | 2026-01-15T15:18:33 |\r\n| Groups Run | developer', 'lfric_atm_extra |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [tommbendall/lfric_apps@TBendall/StochPhysFixes](https://github.com/tommbendall/lfric_apps/tree/TBendall/StochPhysFixes) | False |\r\n| lfric_core | [tommbendall/lfric_core@TBendall/smp_phys_wind_correct](https://github.com/tommbendall/lfric_core/tree/TBendall/smp_phys_wind_correct) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 1256\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any psyclone related code (eg. PsyKAl-lite, Kernal\r\n inteface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 69, "repository": "MetOffice/lfric_apps", "title": "Correct the sample_physics_winds_correction option", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/69"}, "id": "PVTI_lADOAGrG5M4A_OAXzgitsto", "labels": ["bug", "Linked Core", "cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["atb1995", "allynt"], "sciTech Review": "atb1995", "status": "Code Review", "title": "Correct the sample_physics_winds_correction option"}, {"assignees": ["james-bruten-mo"], "content": {"body": "Respect the `.gitignore` when rsyncing local clones for the test suite. Not doing this is causing issues when the local build script has been run.\r\nI've tested that this behaves as expected by running with the test suite from a clone with the local build output. The gitignore'd directories don't get copied. Also tested from /var/tmp to ensure it works for local filesystems.", "number": 150, "repository": "MetOffice/SimSys_Scripts", "title": "respect gitignore", "type": "PullRequest", "url": "https://github.com/MetOffice/SimSys_Scripts/pull/150"}, "id": "PVTI_lADOAGrG5M4A_OAXzgitymk", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/SimSys_Scripts", "reviewers": ["t00sa"], "status": "Done", "title": "respect gitignore"}, {"assignees": ["yaswant"], "code Review": "MatthewHambley", "content": {"body": "Some tidying up of the repo:\r\n- remove `rose_ana`\r\n- add GitHub actions workflows for Python and CLA checks (excludes if changes are only in rose which are inherited from [metomi/rose](https://github.com/metomi/rose/tree/master/metomi/rose).", "number": 2, "repository": "MetOffice/rose_picker", "title": "Tidy up repo and add checks", "type": "PullRequest", "url": "https://github.com/MetOffice/rose_picker/pull/2"}, "id": "PVTI_lADOAGrG5M4A_OAXzgiuLSs", "labels": ["enhancement"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/rose_picker", "reviewers": ["MatthewHambley", "MatthewHambley", "james-bruten-mo", "james-bruten-mo"], "sciTech Review": "james-bruten-mo", "status": "Done", "title": "Tidy up repo and add checks"}, {"assignees": ["DrTVockerodtMO"], "code Review": "james-bruten-mo", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @tom-j-h \r\nCode Reviewer: @james-bruten-mo \r\n\r\n\r\n\r\n\r\n\r\nPrevious PR #44 broke on the web so I re-branched. I modified two of the adjoint kernels (one via a patch, the other as source code) to produce the correct results when using `log_space = .true.`. The `rose-stem` and example configurations have been edited with the values used in the benchmarking branch.\r\n\r\n\r\n\r\n\r\n- Fixes #40 \r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource\r\n and have tests been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n# Test Suite Results - lfric_apps - lfric_apps_adjoint_log_space_fix/run9\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | lfric_apps_adjoint_log_space_fix/run9 |\r\n| Suite User | terence.vockerodt |\r\n| Workflow Start | 2025-12-16T12:02:36 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [DrTVockerodtMO/lfric_apps_adjoint_log_space_fix@lfric_apps_adjoint_log_space_fix_branch](https://github.com/DrTVockerodtMO/lfric_apps_adjoint_log_space_fix/tree/lfric_apps_adjoint_log_space_fix_branch) | False |\r\n| lfric_core | [MetOffice/lfric_core@2025.12.1](https://github.com/MetOffice/lfric_core/tree/2025.12.1) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n
\r\n:white_check_mark: succeeded tasks - 1106\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| build_adjoint_tests_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_azspice_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_ex1a_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_adjoint_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_coupled_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gravity_wave_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_gravity_wave_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_gravity_wave_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_gravity_wave_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_gravity_wave_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gungho_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_gungho_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| build_gungho_model_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_model_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| build_gungho_model_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_gungho_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_tests_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_tests_integration_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_jules_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric2lfric_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric2lfric_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_full-debug-32bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_production-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_fast-debug-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_full-debug-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_production-32bit | succeeded |\r\n| build_lfric_coupled_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_linear_model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_model_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_linear_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_mesh_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_name_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_ngarch_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_ngarch_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_ngarch_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_ngarch_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_physics_schemes_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_physics_schemes_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_shallow_water_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_shallow_water_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_shallow_water_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_shallow_water_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_solver_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_solver_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_solver_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_transport_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_transport_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_transport_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| check_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200_realorog-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200_realorog-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-nrun-v-crun | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-nrun-v-crun | succeeded |\r\n| check_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_runge-kutta-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_runge-kutta-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_semi-implicit-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_semi-implicit-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_nwp_gal9-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_nwp_gal9-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jules_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-seuk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_chem_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_chem_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9_debug-C12_azspice_gnu_full-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_debug-C12_ex1a_cce_full-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_noukca_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_noukca_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_zero-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_zero-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| config_dump_checker | succeeded |\r\n| export-source | succeeded |\r\n| export-source_azspice | succeeded |\r\n| export-source_ex1a | succeeded |\r\n| export-weights_azspice | succeeded |\r\n| export-weights_ex1a | succeeded |\r\n| fcm_make2_drivers | succeeded |\r\n| fcm_make2_lfric_coupled_ocean_ex1a_cce_fast-debug-64bit | succeeded |\r\n| fcm_make_drivers | succeeded |\r\n| fcm_make_lfric_coupled_ocean_ex1a_cce_fast-debug-64bit | succeeded |\r\n| fcm_make_lfric_coupled_river_ex1a_cce_fast-debug-64bit | succeeded |\r\n| generate_weights_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet_lbc_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-falklands_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_azspice_weightgen_script | succeeded |\r\n| global_variables_checker | succeeded |\r\n| housekeep_azspice | succeeded |\r\n| housekeep_ex1a | succeeded |\r\n| local_build_test | succeeded |\r\n| macro_chains_checker | succeeded |\r\n| perftools-export_gungho_model_baroclinic-profile_perf-C24_MG_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| pert_compare_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| pert_compare_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_cylinder_xz-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_cylinder_xz-BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| python_unit_tests | succeeded |\r\n| remote-init_azspice | succeeded |\r\n| remote-init_ex1a | succeeded |\r\n| rose-stem_lint_checker | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_adjoint_tests_canned_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_canned_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_azspice_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_ex1a_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_varying_ls-C12_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_adjoint_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_coupled_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gravity_wave_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_gravity_wave_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gungho_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_gungho_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit_pert_off | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit_pert_off | succeeded |\r\n| run_gungho_model_baroclinic-profile_perf-C24_MG_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_gungho_model_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200_realorog-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200_realorog-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_no-timestep-method-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_no-timestep-method-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_runge-kutta-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_runge-kutta-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_semi-implicit-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_semi-implicit-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_gungho_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_tests_integration_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_nwp_gal9-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_nwp_gal9-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jules_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jules_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-seuk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric_atm_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_canned_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_chem_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_chem_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C12_azspice_gnu_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C12_ex1a_cce_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_linear_model_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_zero-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_zero-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_linear_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_mesh_BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP2x2-50000x50000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1500x1500_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_C16_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_rot_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_rot_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_falklands_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_falklands_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_seuk_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_seuk_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_cylinder_xz-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_cylinder_xz-BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_name_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_ngarch_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_physics_schemes_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_physics_schemes_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_shallow_water_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_shallow_water_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_transport_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| site_validator | succeeded |\r\n| style_checker | succeeded |\r\n| test_launch-exe | succeeded |\r\n| validate_rose_meta | succeeded |\r\n
\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [x] If you have edited any psyclone related code (eg. PsyKAl-lite, Kernal\r\n inteface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 71, "repository": "MetOffice/lfric_apps", "title": "Fixing adjoint failures with transport log_space config variable set to true", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/71"}, "id": "PVTI_lADOAGrG5M4A_OAXzgiuvmk", "labels": ["bug", "cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["allynt", "tom-j-h"], "sciTech Review": "tom-j-h", "status": "Done", "title": "Fixing adjoint failures with transport log_space config variable set to true"}, {"assignees": ["DrTVockerodtMO"], "code Review": "harry-shepherd", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @mo-joshuacolclough \r\nCode Reviewer: @harry-shepherd \r\n\r\n\r\n\r\n\r\n\r\nPR #59 had a weird commit history so I re-branched to make reviewing simpler. Introduces the lookup table cache, with an introductory interface change to include it into the adjoint tests for the lookup table (stencil) kernels. To keep things agile, the full interface changes necessary to get the speedup described in the related issue will be relegated to another ticket.\r\n\r\n- Fixes #58 \r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource\r\n and have tests been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n# Test Suite Results - lfric_apps - lfric_apps_adjoint_lookup_cache_part_1/run2\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | lfric_apps_adjoint_lookup_cache_part_1/run2 |\r\n| Suite User | terence.vockerodt |\r\n| Workflow Start | 2025-12-16T14:48:16 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [DrTVockerodtMO/lfric_apps_adjoint_lookup_cache_part_1@lfric_apps_adjoint_lookup_cache_part_1_branch](https://github.com/DrTVockerodtMO/lfric_apps_adjoint_lookup_cache_part_1/tree/lfric_apps_adjoint_lookup_cache_part_1_branch) | False |\r\n| lfric_core | [MetOffice/lfric_core@2025.12.1](https://github.com/MetOffice/lfric_core/tree/2025.12.1) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n
\r\n:white_check_mark: succeeded tasks - 1106\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| build_adjoint_tests_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_azspice_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_ex1a_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_adjoint_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_coupled_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gravity_wave_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_gravity_wave_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_gravity_wave_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_gravity_wave_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_gravity_wave_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gungho_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_gungho_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| build_gungho_model_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_model_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| build_gungho_model_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_gungho_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_tests_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_tests_integration_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_jules_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric2lfric_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric2lfric_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_full-debug-32bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_production-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_fast-debug-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_full-debug-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_production-32bit | succeeded |\r\n| build_lfric_coupled_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_linear_model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_model_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_linear_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_mesh_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_name_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_ngarch_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_ngarch_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_ngarch_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_ngarch_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_physics_schemes_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_physics_schemes_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_shallow_water_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_shallow_water_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_shallow_water_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_shallow_water_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_solver_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_solver_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_solver_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_transport_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_transport_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_transport_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| check_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200_realorog-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200_realorog-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-nrun-v-crun | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-nrun-v-crun | succeeded |\r\n| check_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_runge-kutta-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_runge-kutta-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_semi-implicit-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_semi-implicit-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_nwp_gal9-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_nwp_gal9-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jules_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-seuk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_chem_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_chem_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9_debug-C12_azspice_gnu_full-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_debug-C12_ex1a_cce_full-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_noukca_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_noukca_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_zero-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_zero-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| config_dump_checker | succeeded |\r\n| export-source | succeeded |\r\n| export-source_azspice | succeeded |\r\n| export-source_ex1a | succeeded |\r\n| export-weights_azspice | succeeded |\r\n| export-weights_ex1a | succeeded |\r\n| fcm_make2_drivers | succeeded |\r\n| fcm_make2_lfric_coupled_ocean_ex1a_cce_fast-debug-64bit | succeeded |\r\n| fcm_make_drivers | succeeded |\r\n| fcm_make_lfric_coupled_ocean_ex1a_cce_fast-debug-64bit | succeeded |\r\n| fcm_make_lfric_coupled_river_ex1a_cce_fast-debug-64bit | succeeded |\r\n| generate_weights_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet_lbc_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-falklands_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_azspice_weightgen_script | succeeded |\r\n| global_variables_checker | succeeded |\r\n| housekeep_azspice | succeeded |\r\n| housekeep_ex1a | succeeded |\r\n| local_build_test | succeeded |\r\n| macro_chains_checker | succeeded |\r\n| perftools-export_gungho_model_baroclinic-profile_perf-C24_MG_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| pert_compare_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| pert_compare_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_cylinder_xz-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_cylinder_xz-BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| python_unit_tests | succeeded |\r\n| remote-init_azspice | succeeded |\r\n| remote-init_ex1a | succeeded |\r\n| rose-stem_lint_checker | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_adjoint_tests_canned_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_canned_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_azspice_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_ex1a_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_varying_ls-C12_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_adjoint_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_coupled_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gravity_wave_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_gravity_wave_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gungho_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_gungho_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit_pert_off | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit_pert_off | succeeded |\r\n| run_gungho_model_baroclinic-profile_perf-C24_MG_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_gungho_model_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200_realorog-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200_realorog-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_no-timestep-method-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_no-timestep-method-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_runge-kutta-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_runge-kutta-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_semi-implicit-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_semi-implicit-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_gungho_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_tests_integration_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_nwp_gal9-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_nwp_gal9-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jules_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jules_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-seuk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric_atm_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_canned_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_chem_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_chem_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C12_azspice_gnu_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C12_ex1a_cce_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_linear_model_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_zero-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_zero-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_linear_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_mesh_BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP2x2-50000x50000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1500x1500_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_C16_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_rot_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_rot_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_falklands_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_falklands_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_seuk_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_seuk_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_cylinder_xz-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_cylinder_xz-BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_name_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_ngarch_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_physics_schemes_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_physics_schemes_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_shallow_water_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_shallow_water_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_transport_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| site_validator | succeeded |\r\n| style_checker | succeeded |\r\n| test_launch-exe | succeeded |\r\n| validate_rose_meta | succeeded |\r\n
\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [x] If you have edited any psyclone related code (eg. PsyKAl-lite, Kernal\r\n inteface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [x] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [x] Documentation is complete and accurate\r\n- [x] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n", "number": 72, "repository": "MetOffice/lfric_apps", "title": "Introducing cache for adjoint lookup tables", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/72"}, "id": "PVTI_lADOAGrG5M4A_OAXzgiuzc0", "labels": ["enhancement", "cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["harry-shepherd", "mo-joshuacolclough"], "sciTech Review": "mo-joshuacolclough", "status": "Done", "title": "Introducing cache for adjoint lookup tables"}, {"content": {"body": "Reverts MetOffice/SimSys_Scripts#150", "number": 151, "repository": "MetOffice/SimSys_Scripts", "title": "Revert \"respect gitignore\"", "type": "PullRequest", "url": "https://github.com/MetOffice/SimSys_Scripts/pull/151"}, "id": "PVTI_lADOAGrG5M4A_OAXzgivXGk", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/SimSys_Scripts", "status": "Done", "title": "Revert \"respect gitignore\""}, {"content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @yaswant \r\n\r\n\r\n\r\n\r\n\r\nJust a quick fix to correct Momentum™ to Momentum®.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid understanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite\r\n using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel\r\n interface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [x] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [x] Documentation is complete and accurate\r\n- [x] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n", "number": 193, "repository": "MetOffice/lfric_core", "title": "Change TM to R", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/193"}, "id": "PVTI_lADOAGrG5M4A_OAXzgivYho", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["yaswant"], "status": "Done", "title": "Change TM to R"}, {"assignees": ["james-bruten-mo"], "content": {"body": "Try again from #150, this time using `--exclude` for each potential output from local builds. I've tested with both apps and core this time", "number": 152, "repository": "MetOffice/SimSys_Scripts", "title": "Rsync exclude", "type": "PullRequest", "url": "https://github.com/MetOffice/SimSys_Scripts/pull/152"}, "id": "PVTI_lADOAGrG5M4A_OAXzgivsg8", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/SimSys_Scripts", "reviewers": ["t00sa"], "status": "Done", "title": "Rsync exclude"}, {"assignees": ["tommbendall", "mo-marqh"], "code Review": "mo-marqh", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @jameskent-metoffice \r\nCode Reviewer: @mo-marqh \r\n\r\n\r\n\r\nThis PR makes some changes to the plotting scripts used for the baroclinic wave and Straka bubble tests in the `gungho_model` test suite, ensuring that the plots are sensible with run in the Met Office azspice and HPC environments.\r\n\r\nI have refrained from wholesale rewriting of the scripts! But the change can be summarised as ensuring that everything is plotted on the appropriate `matplotlib.pyplot` `Axes` object, rather than using a mixture of `ax` and `plt`.\r\n\r\nThis fixes Issue #70.\r\n\r\nThe new plots are:\r\n\r\n\"baroclinic_plot-theta-time864000\r\n\r\n\"straka_x_theta_T000180\"\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource\r\n and have tests been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n# Test Suite Results - lfric_apps - gungho_plot_fix/run4\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | gungho_plot_fix/run4 |\r\n| Suite User | thomas.bendall |\r\n| Workflow Start | 2026-01-12T17:08:40 |\r\n| Groups Run | suite_default |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [tommbendall/lfric_apps@TBendall/gungho_plot_fix](https://github.com/tommbendall/lfric_apps/tree/TBendall/gungho_plot_fix) | False |\r\n| lfric_core | [MetOffice/lfric_core@2025.12.1](https://github.com/MetOffice/lfric_core/tree/2025.12.1) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n
\r\n:white_check_mark: succeeded tasks - 1106\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| build_adjoint_tests_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_azspice_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_ex1a_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_adjoint_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_coupled_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gravity_wave_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_gravity_wave_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_gravity_wave_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_gravity_wave_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_gravity_wave_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gungho_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_gungho_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| build_gungho_model_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_model_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| build_gungho_model_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_gungho_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_tests_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_tests_integration_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_jules_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric2lfric_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric2lfric_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_full-debug-32bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_production-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_fast-debug-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_full-debug-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_production-32bit | succeeded |\r\n| build_lfric_coupled_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_linear_model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_model_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_linear_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_mesh_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_name_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_ngarch_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_ngarch_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_ngarch_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_ngarch_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_physics_schemes_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_physics_schemes_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_shallow_water_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_shallow_water_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_shallow_water_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_shallow_water_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_solver_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_solver_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_solver_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_transport_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_transport_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_transport_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| check_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200_realorog-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200_realorog-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-nrun-v-crun | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-nrun-v-crun | succeeded |\r\n| check_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_runge-kutta-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_runge-kutta-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_semi-implicit-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_semi-implicit-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_nwp_gal9-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_nwp_gal9-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jules_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-seuk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_chem_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_chem_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9_debug-C12_azspice_gnu_full-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_debug-C12_ex1a_cce_full-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_noukca_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_noukca_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_zero-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_zero-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| config_dump_checker | succeeded |\r\n| export-source | succeeded |\r\n| export-source_azspice | succeeded |\r\n| export-source_ex1a | succeeded |\r\n| export-weights_azspice | succeeded |\r\n| export-weights_ex1a | succeeded |\r\n| fcm_make2_drivers | succeeded |\r\n| fcm_make2_lfric_coupled_ocean_ex1a_cce_fast-debug-64bit | succeeded |\r\n| fcm_make_drivers | succeeded |\r\n| fcm_make_lfric_coupled_ocean_ex1a_cce_fast-debug-64bit | succeeded |\r\n| fcm_make_lfric_coupled_river_ex1a_cce_fast-debug-64bit | succeeded |\r\n| generate_weights_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet_lbc_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-falklands_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_azspice_weightgen_script | succeeded |\r\n| global_variables_checker | succeeded |\r\n| housekeep_azspice | succeeded |\r\n| housekeep_ex1a | succeeded |\r\n| local_build_test | succeeded |\r\n| macro_chains_checker | succeeded |\r\n| perftools-export_gungho_model_baroclinic-profile_perf-C24_MG_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| pert_compare_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| pert_compare_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_cylinder_xz-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_cylinder_xz-BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| python_unit_tests | succeeded |\r\n| remote-init_azspice | succeeded |\r\n| remote-init_ex1a | succeeded |\r\n| rose-stem_lint_checker | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_adjoint_tests_canned_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_canned_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_azspice_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_ex1a_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_varying_ls-C12_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_adjoint_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_coupled_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gravity_wave_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_gravity_wave_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gungho_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_gungho_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit_pert_off | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit_pert_off | succeeded |\r\n| run_gungho_model_baroclinic-profile_perf-C24_MG_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_gungho_model_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200_realorog-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200_realorog-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_no-timestep-method-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_no-timestep-method-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_runge-kutta-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_runge-kutta-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_semi-implicit-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_semi-implicit-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_gungho_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_tests_integration_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_nwp_gal9-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_nwp_gal9-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jules_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jules_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-seuk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric_atm_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_canned_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_chem_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_chem_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C12_azspice_gnu_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C12_ex1a_cce_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_linear_model_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_zero-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_zero-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_linear_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_mesh_BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP2x2-50000x50000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1500x1500_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_C16_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_rot_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_rot_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_falklands_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_falklands_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_seuk_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_seuk_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_cylinder_xz-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_cylinder_xz-BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_name_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_ngarch_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_physics_schemes_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_physics_schemes_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_shallow_water_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_shallow_water_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_transport_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| site_validator | succeeded |\r\n| style_checker | succeeded |\r\n| test_launch-exe | succeeded |\r\n| validate_rose_meta | succeeded |\r\n
\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [x] If you have edited any psyclone related code (eg. PsyKAl-lite, Kernal\r\n inteface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [x] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [x] Documentation is complete and accurate\r\n- [x] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n\r\n", "number": 74, "repository": "MetOffice/lfric_apps", "title": "Fix Gungho Plots", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/74"}, "id": "PVTI_lADOAGrG5M4A_OAXzgivx3w", "labels": ["bug", "cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["jameskent-metoffice", "mo-marqh", "mo-marqh", "mo-marqh"], "status": "Approved", "title": "Fix Gungho Plots"}, {"assignees": ["james-bruten-mo"], "code Review": "andrewcoughtrie", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @andrewcoughtrie \r\n\r\n\r\n\r\nThe output directories of local builds hasn't been set up quite correctly\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite\r\n using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel\r\n interface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [x] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [x] Documentation is complete and accurate\r\n- [x] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n", "number": 194, "repository": "MetOffice/lfric_core", "title": "Update gitignore", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/194"}, "id": "PVTI_lADOAGrG5M4A_OAXzgiv4t0", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["andrewcoughtrie", "andrewcoughtrie"], "status": "Done", "title": "Update gitignore"}, {"assignees": ["james-bruten-mo"], "code Review": "andrewcoughtrie", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @andrewcoughtrie \r\n\r\n\r\n\r\nThe output directories of local builds hasn't been set up quite correctly\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have tests been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any psyclone related code (eg. PsyKAl-lite, Kernal\r\n inteface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [x] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [x] Documentation is complete and accurate\r\n- [x] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n", "number": 75, "repository": "MetOffice/lfric_apps", "title": "update gitignore", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/75"}, "id": "PVTI_lADOAGrG5M4A_OAXzgiv48M", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["andrewcoughtrie"], "status": "Done", "title": "update gitignore"}, {"content": {"body": "", "number": 49, "repository": "MetOffice/growss", "title": "Remove label", "type": "PullRequest", "url": "https://github.com/MetOffice/growss/pull/49"}, "id": "PVTI_lADOAGrG5M4A_OAXzgiv-mw", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/growss", "status": "Done", "title": "Remove label"}, {"assignees": ["mike-hobson"], "code Review": "svadams ", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @MatthewHambley \r\nCode Reviewer: @svadams \r\n\r\n\r\n\r\nCreate, store and reuse xmaps in the creation of halo routing tables.\r\n\r\n- closes #195 \r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [X] I have performed a self-review of my own code\r\n- [X] My code follows the project's\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [X] Comments have been included that aid understanding and enhance the\r\n readability of the code\r\n- [X] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [X] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite\r\n using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (e.g. kgo changes)\r\n- [X] I have added tests to cover new functionality as appropriate (e.g. system\r\n tests, unit tests, etc.)\r\n- [X] Any new tests have been assigned an appropriate amount of compute resource\r\n and have been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n# Test Suite Results - lfric_core - reusing_xt_xmap_core/run2\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | reusing_xt_xmap_core/run2 |\r\n| Suite User | mike.hobson |\r\n| Workflow Start | 2025-12-18T14:39:11 |\r\n| Groups Run | suite_default |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| lfric_core | [mike-hobson/lfric_core@reusing_xt_xmap](https://github.com/mike-hobson/lfric_core/tree/reusing_xt_xmap) | False |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n
\r\n:white_check_mark: succeeded tasks - 372\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| build_coupled_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_coupled_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_coupled_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_coupled_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_coupling_unit_tests_azspice_gnu_32bit | succeeded |\r\n| build_coupling_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_coupling_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| build_coupling_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_driver_unit_tests_azspice_gnu_32bit | succeeded |\r\n| build_driver_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_driver_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| build_driver_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_infrastructure_integration_tests_azspice_gnu_32bit | succeeded |\r\n| build_infrastructure_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_infrastructure_integration_tests_ex1a_cce_32bit | succeeded |\r\n| build_infrastructure_integration_tests_ex1a_cce_64bit | succeeded |\r\n| build_infrastructure_unit_tests_azspice_gnu_32bit | succeeded |\r\n| build_infrastructure_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_infrastructure_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| build_infrastructure_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_io_demo_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_io_demo_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_io_demo_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_io_demo_ex1a_cce_fast-debug-32bit | succeeded |\r\n| build_io_demo_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_io_demo_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_io_demo_ex1a_gnu_fast-debug-32bit | succeeded |\r\n| build_io_demo_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_io_demo_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_io_demo_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_lbc_demo_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lbc_demo_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lbc_demo_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lbc_demo_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric_xios_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_lfric_xios_integration_tests_ex1a_cce_64bit | succeeded |\r\n| build_lfric_xios_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_lfric_xios_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_mesh_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_tools_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_tools_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_mesh_tools_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_mesh_tools_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_mesh_tools_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_tools_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_mesh_tools_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_science_unit_tests_azspice_gnu_32bit | succeeded |\r\n| build_science_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_science_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| build_science_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_simple_diffusion_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_simple_diffusion_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_simple_diffusion_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_simple_diffusion_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_simple_diffusion_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_simple_diffusion_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_simple_diffusion_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_skeleton_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_skeleton_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_skeleton_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_skeleton_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_skeleton_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_skeleton_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_skeleton_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| check_coupled_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_coupled_default-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_coupled_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_coupled_default-C12_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_io_demo_default-C24_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_io_demo_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_io_demo_default-C24_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_io_demo_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_io_demo_multifile-C24_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_io_demo_multifile-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_io_demo_multifile-C24_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_io_demo_multifile-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_io_demo_multifile-C24_ex1a_gnu_fast-debug-32bit | succeeded |\r\n| check_io_demo_multifile-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_ConstantLBC-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_ConstantLBC-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_lbc_demo_ConstantLBC-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_ConstantLBC-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_1x1P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_1x1P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_2x2P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_2x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_8x2P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_8x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_lbc_demo_default-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_default-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_lbc_demo_default-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_default-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c1_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c2_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c2_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c3_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c3_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c3_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-maps_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-maps_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-maps_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op-nonuniform_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op-nonuniform_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op-nonuniform_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-rotated_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-rotated_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-rotated_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_equator-band_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_equator-band_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_equator-band_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_equator_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_equator_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_equator_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_mesh_tools_falklands_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_falklands_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_falklands_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_london-model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_london-model_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_london-model_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_nzlam4_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_nzlam4_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_nzlam4_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-bi-periodic_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-bi-periodic_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-bi-periodic_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-maps_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-maps_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-maps_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-non-periodic_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-non-periodic_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-non-periodic_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-op-lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-op-lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-op-lam_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-centres_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-centres_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-centres_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-nodes_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-nodes_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-nodes_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-points_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-points_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-points_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-x_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-x_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-x_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-y_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-y_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-y_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_polar_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_polar_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_polar_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_uk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_uk_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_uk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_var-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_var-seuk_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_var-seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_simple_diffusion_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_simple_diffusion_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_simple_diffusion_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| check_skeleton_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_skeleton_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_skeleton_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| config_dump_checker | succeeded |\r\n| export-source | succeeded |\r\n| export-source_azspice | succeeded |\r\n| export-source_ex1a | succeeded |\r\n| global_variables_checker | succeeded |\r\n| housekeep_azspice | succeeded |\r\n| housekeep_ex1a | succeeded |\r\n| python_unit_tests | succeeded |\r\n| remote-init_azspice | succeeded |\r\n| remote-init_ex1a | succeeded |\r\n| rose-stem_lint_checker | succeeded |\r\n| run_coupled_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_coupled_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_coupled_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_coupled_default-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_coupled_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_coupled_default-C12_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_coupling_unit_tests_azspice_gnu_32bit | succeeded |\r\n| run_coupling_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_coupling_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| run_coupling_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_driver_unit_tests_azspice_gnu_32bit | succeeded |\r\n| run_driver_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_driver_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| run_driver_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_infrastructure_integration_tests_azspice_gnu_32bit | succeeded |\r\n| run_infrastructure_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_infrastructure_integration_tests_ex1a_cce_32bit | succeeded |\r\n| run_infrastructure_integration_tests_ex1a_cce_64bit | succeeded |\r\n| run_infrastructure_unit_tests_azspice_gnu_32bit | succeeded |\r\n| run_infrastructure_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_infrastructure_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| run_infrastructure_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_io_demo_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_io_demo_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_io_demo_default-C24_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_io_demo_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_io_demo_default-C24_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_io_demo_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_io_demo_multifile-C24_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_io_demo_multifile-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_io_demo_multifile-C24_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_io_demo_multifile-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_io_demo_multifile-C24_ex1a_gnu_fast-debug-32bit | succeeded |\r\n| run_io_demo_multifile-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_io_demo_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_io_demo_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_lbc_demo_ConstantLBC-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_ConstantLBC-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lbc_demo_ConstantLBC-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_ConstantLBC-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_IntegerFields-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_IntegerFields-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lbc_demo_IntegerFields-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_IntegerFields-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_1x1P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_1x1P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_2x2P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_2x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_8x2P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_8x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lbc_demo_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_default-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_default-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lbc_demo_default-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_default-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric_xios_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_lfric_xios_integration_tests_ex1a_cce_64bit | succeeded |\r\n| run_lfric_xios_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_lfric_xios_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_mesh_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_1x1P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_2x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_8x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_canned_cubedsphere_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_canned_planar_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c1_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c2_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c2_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c3_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c3_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c3_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-maps_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-maps_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-maps_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op-nonuniform_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op-nonuniform_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op-nonuniform_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-rotated_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-rotated_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-rotated_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_equator-band_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_equator-band_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_equator-band_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_equator_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_equator_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_equator_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_mesh_tools_falklands_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_falklands_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_falklands_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_london-model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_london-model_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_london-model_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_nzlam4_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_nzlam4_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_nzlam4_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-bi-periodic_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-bi-periodic_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-bi-periodic_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-maps_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-maps_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-maps_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-non-periodic_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-non-periodic_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-non-periodic_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-op-lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-op-lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-op-lam_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-centres_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-centres_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-centres_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-nodes_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-nodes_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-nodes_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-points_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-points_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-points_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-x_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-x_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-x_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-y_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-y_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-y_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_polar_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_polar_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_polar_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_uk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_uk_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_uk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_mesh_tools_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_mesh_tools_var-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_var-seuk_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_var-seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_science_unit_tests_azspice_gnu_32bit | succeeded |\r\n| run_science_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_science_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| run_science_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_simple_diffusion_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_simple_diffusion_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_simple_diffusion_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_simple_diffusion_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_simple_diffusion_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_simple_diffusion_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_simple_diffusion_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_skeleton_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_skeleton_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_skeleton_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_skeleton_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_skeleton_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_skeleton_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_skeleton_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| site_validator | succeeded |\r\n| style_checker | succeeded |\r\n| validate_rose_meta | succeeded |\r\n
\r\n\r\n\r\n## Security Considerations\r\n\r\n- [X] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [X] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel\r\n interface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [x] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [x] Documentation is complete and accurate\r\n- [x] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n", "number": 198, "repository": "MetOffice/lfric_core", "title": "Reusing xt xmap", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/198"}, "id": "PVTI_lADOAGrG5M4A_OAXzgiwo0o", "labels": ["enhancement", "cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["MatthewHambley", "MatthewHambley", "svadams", "svadams", "MatthewHambley"], "sciTech Review": "MatthewHambley", "status": "Done", "title": "Reusing xt xmap"}, {"assignees": ["james-bruten-mo"], "code Review": "yaswant", "content": {"body": "This improves the logic around modification of the CONTRIBUTORS file when the signature already exists on the base branch. This is now determined by diffing the merged branch against the head of the base branch. Given this workflow is called on `pull_request_target` (to allow for commenting and labelling), we need to checkout the ref `\"refs/pull/${{ github.event.number }}/merge\"`. \r\n\r\nI also modify some of the output comments - this will fail if there is any difference found above rather than just when the signature is removed (to protect against removing someone elses name accidently when fixing a conflict). There might be legitimate reasons to edit the file, but this will require an admin to bypass the branch protection.\r\n\r\nI've tested this pretty thoroughly on private repos, including with forks. Happy to switch to target `develop` though if we want to verify on the git_playground.", "number": 50, "repository": "MetOffice/growss", "title": "update cla action", "type": "PullRequest", "url": "https://github.com/MetOffice/growss/pull/50"}, "id": "PVTI_lADOAGrG5M4A_OAXzgixAD8", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/growss", "reviewers": ["yaswant"], "status": "Done", "title": "update cla action"}, {"assignees": ["r-sharp"], "code Review": "yaswant", "content": {"body": "Sci/Tech Reviewer: @jennyhickson \r\nCode Reviewer: @yaswant \r\n\r\n# Description\r\n\r\n## Summary\r\n\r\nReplacing the old Perl umdp3 compliance checking script with a half baked Python one.\r\n\r\n## Changes\r\n\r\nRemove all old Perl files.\r\nAdd _Python translations_ after some heavy refactoring.\r\nThis provides a framework, and some very simple tests to run on Fortran code.\r\nIt will need some tweaking as we stumble over the defficiencies we see when used in anger.\r\n\r\n## Impact\r\n\r\nReplaces a set of Perl scripts which was hardwired to FCM to a Python version capable of using git_bdiff\r\n\r\n## Issues addressed\r\n\r\nResolves\r\n\r\nOne of the last remaining Perl script uses in the toolset\r\nHardwiring of our style checker to FCM\r\n\r\n## Checklist\r\n\r\n- [x] I have performed a self-review of my own changes\r\n", "number": 153, "repository": "MetOffice/SimSys_Scripts", "title": "Umdp3 checker in python", "type": "PullRequest", "url": "https://github.com/MetOffice/SimSys_Scripts/pull/153"}, "id": "PVTI_lADOAGrG5M4A_OAXzgixAEw", "labels": ["CI", "git-migration"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/SimSys_Scripts", "reviewers": ["jennyhickson", "jennyhickson", "yaswant"], "sciTech Review": "jennyhickson", "status": "Done", "title": "Umdp3 checker in python"}, {"content": {"body": "# PR Summary\r\n\r\nSci Tech Reviewer: \r\nCode Reviewer: \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's style guidelines\r\n- [ ] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\n### trac.log and other testing evidence\r\n\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] This change does not introduce security vulnerabilities\r\n- [ ] I have reviewed the code for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## Contributor License Agreement (CLA)\r\n\r\n- [ ] **Required** - I confirm that I have read and agree to the project's\r\n [Contributor License Agreement](todo-enter-link-to-cla)\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](todo-enter-link-to-policy-page) (including\r\n attribution labels)\r\n\r\n## Documentation\r\n\r\nDocumentation includes a broad range of things, including but not limited to, \r\nuser guides, code comments, API documentation, and README.md.\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n# Sci-Tech Review\r\n\r\n\r\n\r\n- [ ] I understand the scientific or technical area of the code being modified\r\n- [ ] The code changes correspond to the PR description of the changes\r\n- [ ] Sufficient documentation has been included\r\n- [ ] Sufficient testing has been performed\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues are properly linked and addressed\r\n- [ ] CLA compliance is confirmed\r\n- [ ] Code quality standards are met\r\n- [ ] Tests are adequate and passing\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 107, "repository": "MetOffice/git_playground", "title": "Demonstrate cla", "type": "PullRequest", "url": "https://github.com/MetOffice/git_playground/pull/107"}, "id": "PVTI_lADOAGrG5M4A_OAXzgiyoGc", "labels": ["cla-signed", "contributor"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/git_playground", "status": "Done", "title": "Demonstrate cla"}, {"content": {"body": "# PR Summary\r\n\r\nSci Tech Reviewer: \r\nCode Reviewer: \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's style guidelines\r\n- [ ] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\n### trac.log and other testing evidence\r\n\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] This change does not introduce security vulnerabilities\r\n- [ ] I have reviewed the code for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## Contributor License Agreement (CLA)\r\n\r\n- [ ] **Required** - I confirm that I have read and agree to the project's\r\n [Contributor License Agreement](todo-enter-link-to-cla)\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](todo-enter-link-to-policy-page) (including\r\n attribution labels)\r\n\r\n## Documentation\r\n\r\nDocumentation includes a broad range of things, including but not limited to, \r\nuser guides, code comments, API documentation, and README.md.\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n# Sci-Tech Review\r\n\r\n\r\n\r\n- [ ] I understand the scientific or technical area of the code being modified\r\n- [ ] The code changes correspond to the PR description of the changes\r\n- [ ] Sufficient documentation has been included\r\n- [ ] Sufficient testing has been performed\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues are properly linked and addressed\r\n- [ ] CLA compliance is confirmed\r\n- [ ] Code quality standards are met\r\n- [ ] Tests are adequate and passing\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 108, "repository": "MetOffice/git_playground", "title": "demonstrate edited contributors", "type": "PullRequest", "url": "https://github.com/MetOffice/git_playground/pull/108"}, "id": "PVTI_lADOAGrG5M4A_OAXzgiypHE", "labels": ["contributor"], "repository": "https://github.com/MetOffice/git_playground", "status": "SciTech Review", "title": "demonstrate edited contributors"}, {"assignees": ["james-bruten-mo"], "code Review": "yaswant", "content": {"body": "Merging the changes from #50 into main having been verified on the develop branch in the git playground", "number": 51, "repository": "MetOffice/growss", "title": "Update the cla-check ", "type": "PullRequest", "url": "https://github.com/MetOffice/growss/pull/51"}, "id": "PVTI_lADOAGrG5M4A_OAXzgiyp2U", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/growss", "reviewers": ["yaswant", "yaswant"], "status": "Done", "title": "Update the cla-check "}, {"assignees": ["oakleybrunt", "MetBenjaminWent"], "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @MetBenjaminWent\r\nCode Reviewer: @james-bruten-mo \r\n\r\n\r\n\r\nSigning the CLA\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have tests been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any psyclone related code (eg. PsyKAl-lite, Kernal\r\n inteface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 78, "repository": "MetOffice/lfric_apps", "title": "Signed CLA", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/78"}, "id": "PVTI_lADOAGrG5M4A_OAXzgiy3wQ", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["MetBenjaminWent", "MetBenjaminWent"], "status": "Done", "title": "Signed CLA"}, {"assignees": ["mo-andymalcolm", "mo-saracusworth"], "code Review": "ericaneininger", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @mo-saracusworth \r\nCode Reviewer: @ericaneininger \r\n\r\n\r\n\r\n\r\nAdd two new build routines needed for the nudging code optimisation changes.\r\nAlso update GCOM version number to 8.5.\r\n\r\nn.b. one of the new routines may not be used but we will leave it in for now. No tests for new routines added but we may do this in a follow-up ticket.\r\n\r\n\r\n\r\n\r\n- closes #7\r\n- blocks um#20\r\n-\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [y] I have performed a self-review of my own code\r\n- [y] My code follows the project's style guidelines\r\n- [y] Comments have been included that aid understanding and enhance the\r\n readability of the code\r\n- [y] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [n/a] If shared files have been modified, I have run the rose-stem suite locally\r\n- [n/a] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [n - see notes] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\nrose stem has been run with all_tune group and all tasks pass\r\n\r\n### trac.log\r\n\r\n\r\nUnable to enter trac.log file as suite-report.py has been removed.\r\n\r\n## Security Considerations\r\n\r\n- [y] I have reviewed my changes for potential security issues\r\n- [n/a] Sensitive data is properly handled (if applicable)\r\n- [n/a] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [y] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [n] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [n/a] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 8, "repository": "MetOffice/gcom", "title": "7 - Add routines needed for nudging", "type": "PullRequest", "url": "https://github.com/MetOffice/gcom/pull/8"}, "id": "PVTI_lADOAGrG5M4A_OAXzgi4SVA", "repository": "https://github.com/MetOffice/gcom", "reviewers": ["ericaneininger", "mo-saracusworth"], "sciTech Review": "mo-saracusworth", "status": "SciTech Review", "title": "7 - Add routines needed for nudging"}, {"assignees": ["mo-marqh"], "code Review": "Pierre-siddall ", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @Pierre-siddall \r\n\r\n\r\n\r\n\r\n\r\n\r\nThis change introduces new timing caliper locations.\r\n\r\nThis contributes work from the recent performance management work (Dec 2025)\r\n\r\n- this will interact with the new PR #80 (from https://code.metoffice.gov.uk/trac/lfric_apps/ticket/958)\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have tests been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any psyclone related code (eg. PsyKAl-lite, Kernal\r\n inteface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 79, "repository": "MetOffice/lfric_apps", "title": "Time calipers pi25", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/79"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjDNp0", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "status": "SciTech Review", "title": "Time calipers pi25"}, {"assignees": ["jedbakerMO"], "code Review": "mo-rickywong", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @christophermaynard \r\nCode Reviewer: @mo-rickywong \r\n\r\n\r\n\r\n\r\n\r\n\r\nThis PR is the github migration of [Trac : lfric_apps#958](https://code.metoffice.gov.uk/trac/lfric_apps/ticket/958)\r\nIt replaces all timer calls throughout LFRic Apps and LFRic Core (in the linked PR) with the new timing wrapper. The timing wrapper can use either the current timer or Vernier, depending on suite configuration.\r\n\r\n\r\nlinked MetOffice/lfric_core/pull/201\r\n\r\n\r\n\r\n- closes #68\r\n- is related to MetOffice/lfric_core#192\r\n- blocks Issue #76 which currently has no PR.\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [X] I have performed a self-review of my own code\r\n- [X] My code follows the project's style guidelines\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [X] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [X] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [X] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have tests been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n# Test Suite Results - lfric_apps - timing_mod_apps_updated/run2\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | timing_mod_apps_updated/run2 |\r\n| Suite User | jed.baker |\r\n| Workflow Start | 2025-12-29T14:52:17 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [jedbakerMO/lfric_apps@68_timing_mod_updated](https://github.com/jedbakerMO/lfric_apps/tree/68_timing_mod_updated) | False |\r\n| lfric_core | [jedbakerMO/lfric_core@192_timing_mod_migration_core](https://github.com/jedbakerMO/lfric_core/tree/192_timing_mod_migration_core) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n
\r\n:white_check_mark: succeeded tasks - 1104\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| build_adjoint_tests_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_azspice_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_ex1a_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_adjoint_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_coupled_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gravity_wave_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_gravity_wave_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_gravity_wave_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_gravity_wave_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_gravity_wave_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gungho_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_gungho_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| build_gungho_model_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_model_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| build_gungho_model_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_gungho_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_tests_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_tests_integration_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_jules_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric2lfric_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric2lfric_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_full-debug-32bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_production-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_fast-debug-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_full-debug-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_production-32bit | succeeded |\r\n| build_lfric_coupled_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_linear_model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_model_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_linear_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_mesh_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_name_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_ngarch_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_ngarch_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_ngarch_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_ngarch_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_physics_schemes_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_physics_schemes_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_shallow_water_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_shallow_water_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_shallow_water_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_shallow_water_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_solver_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_solver_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_solver_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_transport_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_transport_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_transport_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| check_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200_realorog-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200_realorog-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-nrun-v-crun | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-nrun-v-crun | succeeded |\r\n| check_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_runge-kutta-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_runge-kutta-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_semi-implicit-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_semi-implicit-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_nwp_gal9-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_nwp_gal9-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jules_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-seuk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_chem_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_chem_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9_debug-C12_azspice_gnu_full-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_debug-C12_ex1a_cce_full-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_noukca_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_noukca_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_zero-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_zero-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| config_dump_checker | succeeded |\r\n| export-source | succeeded |\r\n| export-source_azspice | succeeded |\r\n| export-source_ex1a | succeeded |\r\n| export-weights_azspice | succeeded |\r\n| export-weights_ex1a | succeeded |\r\n| fcm_make2_drivers | succeeded |\r\n| fcm_make2_lfric_coupled_ocean_ex1a_cce_fast-debug-64bit | succeeded |\r\n| fcm_make_drivers | succeeded |\r\n| fcm_make_lfric_coupled_ocean_ex1a_cce_fast-debug-64bit | succeeded |\r\n| fcm_make_lfric_coupled_river_ex1a_cce_fast-debug-64bit | succeeded |\r\n| generate_weights_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet_lbc_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-falklands_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_azspice_weightgen_script | succeeded |\r\n| global_variables_checker | succeeded |\r\n| local_build_test | succeeded |\r\n| macro_chains_checker | succeeded |\r\n| perftools-export_gungho_model_baroclinic-profile_perf-C24_MG_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| pert_compare_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| pert_compare_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_cylinder_xz-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_cylinder_xz-BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| python_unit_tests | succeeded |\r\n| remote-init_azspice | succeeded |\r\n| remote-init_ex1a | succeeded |\r\n| rose-stem_lint_checker | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_adjoint_tests_canned_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_canned_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_azspice_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_ex1a_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_varying_ls-C12_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_adjoint_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_coupled_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gravity_wave_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_gravity_wave_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gungho_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_gungho_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit_pert_off | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit_pert_off | succeeded |\r\n| run_gungho_model_baroclinic-profile_perf-C24_MG_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_gungho_model_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200_realorog-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200_realorog-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_no-timestep-method-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_no-timestep-method-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_runge-kutta-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_runge-kutta-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_semi-implicit-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_semi-implicit-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_gungho_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_tests_integration_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_nwp_gal9-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_nwp_gal9-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jules_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jules_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-seuk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric_atm_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_canned_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_chem_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_chem_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C12_azspice_gnu_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C12_ex1a_cce_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_linear_model_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_zero-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_zero-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_linear_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_mesh_BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP2x2-50000x50000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1500x1500_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_C16_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_rot_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_rot_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_falklands_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_falklands_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_seuk_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_seuk_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_cylinder_xz-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_cylinder_xz-BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_name_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_ngarch_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_physics_schemes_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_physics_schemes_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_shallow_water_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_shallow_water_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_transport_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| site_validator | succeeded |\r\n| style_checker | succeeded |\r\n| test_launch-exe | succeeded |\r\n| validate_rose_meta | succeeded |\r\n
\r\n\r\n\r\n## Security Considerations\r\n\r\n- [X] I have reviewed my changes for potential security issues\r\n- [X] Sensitive data is properly handled (if applicable)\r\n- [X] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [X] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any psyclone related code (eg. PsyKAl-lite, Kernal\r\n inteface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [x] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n", "number": 80, "repository": "MetOffice/lfric_apps", "title": "Timing Mod wrapper rewrite", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/80"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjDOPA", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["christophermaynard", "mo-rickywong", "mo-rickywong"], "sciTech Review": "christophermaynard", "status": "Approved", "title": "Timing Mod wrapper rewrite"}, {"assignees": ["jedbakerMO"], "code Review": "mo-rickywong", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @christophermaynard \r\nCode Reviewer: @mo-rickywong \r\n\r\n\r\n\r\n\r\nThis PR is the github migration of [Trac : lfric_core#4669](https://code.metoffice.gov.uk/trac/lfric/ticket/4669)\r\nIt replaces all timer calls throughout LFRic Apps (in the linked PR) and LFRic Core with the new timing wrapper. The timing wrapper can use either the current timer or Vernier, depending on suite configuration.\r\n\r\n linked MetOffice/lfric_apps#80\r\n\r\n\r\n- closes #192 \r\n- is related to MetOffice/lfric_apps#68\r\n- blocks Issue #196 which currently has no PR.\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [X] I have performed a self-review of my own code\r\n- [X] My code follows the project's\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [X] Comments have been included that aid understanding and enhance the\r\n readability of the code\r\n- [X] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [X] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [X] If required (e.g. API changes) I have also run the LFRic Apps test suite\r\n using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n# Test Suite Results - lfric_core - timing_mod_core_updated/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | timing_mod_core_updated/run1 |\r\n| Suite User | jed.baker |\r\n| Workflow Start | 2025-12-29T14:36:31 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| lfric_core | [jedbakerMO/lfric_core@192_timing_mod_updated_core](https://github.com/jedbakerMO/lfric_core/tree/192_timing_mod_updated_core) | False |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n
\r\n:white_check_mark: succeeded tasks - 370\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| build_coupled_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_coupled_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_coupled_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_coupled_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_coupling_unit_tests_azspice_gnu_32bit | succeeded |\r\n| build_coupling_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_coupling_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| build_coupling_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_driver_unit_tests_azspice_gnu_32bit | succeeded |\r\n| build_driver_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_driver_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| build_driver_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_infrastructure_integration_tests_azspice_gnu_32bit | succeeded |\r\n| build_infrastructure_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_infrastructure_integration_tests_ex1a_cce_32bit | succeeded |\r\n| build_infrastructure_integration_tests_ex1a_cce_64bit | succeeded |\r\n| build_infrastructure_unit_tests_azspice_gnu_32bit | succeeded |\r\n| build_infrastructure_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_infrastructure_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| build_infrastructure_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_io_demo_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_io_demo_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_io_demo_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_io_demo_ex1a_cce_fast-debug-32bit | succeeded |\r\n| build_io_demo_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_io_demo_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_io_demo_ex1a_gnu_fast-debug-32bit | succeeded |\r\n| build_io_demo_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_io_demo_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_io_demo_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_lbc_demo_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lbc_demo_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lbc_demo_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lbc_demo_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric_xios_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_lfric_xios_integration_tests_ex1a_cce_64bit | succeeded |\r\n| build_lfric_xios_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_lfric_xios_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_mesh_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_tools_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_tools_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_mesh_tools_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_mesh_tools_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_mesh_tools_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_tools_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_mesh_tools_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_science_unit_tests_azspice_gnu_32bit | succeeded |\r\n| build_science_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_science_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| build_science_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_simple_diffusion_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_simple_diffusion_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_simple_diffusion_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_simple_diffusion_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_simple_diffusion_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_simple_diffusion_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_simple_diffusion_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_skeleton_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_skeleton_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_skeleton_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_skeleton_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_skeleton_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_skeleton_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_skeleton_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| check_coupled_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_coupled_default-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_coupled_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_coupled_default-C12_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_io_demo_default-C24_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_io_demo_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_io_demo_default-C24_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_io_demo_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_io_demo_multifile-C24_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_io_demo_multifile-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_io_demo_multifile-C24_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_io_demo_multifile-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_io_demo_multifile-C24_ex1a_gnu_fast-debug-32bit | succeeded |\r\n| check_io_demo_multifile-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_ConstantLBC-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_ConstantLBC-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_lbc_demo_ConstantLBC-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_ConstantLBC-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_1x1P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_1x1P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_2x2P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_2x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_8x2P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_8x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_lbc_demo_default-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_default-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_lbc_demo_default-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_default-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c1_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c2_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c2_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c3_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c3_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c3_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-maps_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-maps_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-maps_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op-nonuniform_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op-nonuniform_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op-nonuniform_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-rotated_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-rotated_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-rotated_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_equator-band_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_equator-band_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_equator-band_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_equator_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_equator_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_equator_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_mesh_tools_falklands_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_falklands_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_falklands_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_london-model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_london-model_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_london-model_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_nzlam4_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_nzlam4_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_nzlam4_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-bi-periodic_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-bi-periodic_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-bi-periodic_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-maps_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-maps_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-maps_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-non-periodic_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-non-periodic_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-non-periodic_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-op-lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-op-lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-op-lam_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-centres_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-centres_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-centres_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-nodes_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-nodes_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-nodes_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-points_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-points_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-points_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-x_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-x_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-x_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-y_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-y_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-y_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_polar_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_polar_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_polar_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_uk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_uk_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_uk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_var-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_var-seuk_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_var-seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_simple_diffusion_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_simple_diffusion_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_simple_diffusion_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| check_skeleton_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_skeleton_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_skeleton_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| config_dump_checker | succeeded |\r\n| export-source | succeeded |\r\n| export-source_azspice | succeeded |\r\n| export-source_ex1a | succeeded |\r\n| global_variables_checker | succeeded |\r\n| python_unit_tests | succeeded |\r\n| remote-init_azspice | succeeded |\r\n| remote-init_ex1a | succeeded |\r\n| rose-stem_lint_checker | succeeded |\r\n| run_coupled_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_coupled_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_coupled_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_coupled_default-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_coupled_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_coupled_default-C12_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_coupling_unit_tests_azspice_gnu_32bit | succeeded |\r\n| run_coupling_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_coupling_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| run_coupling_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_driver_unit_tests_azspice_gnu_32bit | succeeded |\r\n| run_driver_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_driver_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| run_driver_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_infrastructure_integration_tests_azspice_gnu_32bit | succeeded |\r\n| run_infrastructure_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_infrastructure_integration_tests_ex1a_cce_32bit | succeeded |\r\n| run_infrastructure_integration_tests_ex1a_cce_64bit | succeeded |\r\n| run_infrastructure_unit_tests_azspice_gnu_32bit | succeeded |\r\n| run_infrastructure_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_infrastructure_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| run_infrastructure_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_io_demo_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_io_demo_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_io_demo_default-C24_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_io_demo_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_io_demo_default-C24_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_io_demo_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_io_demo_multifile-C24_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_io_demo_multifile-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_io_demo_multifile-C24_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_io_demo_multifile-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_io_demo_multifile-C24_ex1a_gnu_fast-debug-32bit | succeeded |\r\n| run_io_demo_multifile-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_io_demo_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_io_demo_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_lbc_demo_ConstantLBC-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_ConstantLBC-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lbc_demo_ConstantLBC-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_ConstantLBC-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_IntegerFields-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_IntegerFields-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lbc_demo_IntegerFields-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_IntegerFields-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_1x1P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_1x1P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_2x2P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_2x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_8x2P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_8x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lbc_demo_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_default-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_default-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lbc_demo_default-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_default-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric_xios_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_lfric_xios_integration_tests_ex1a_cce_64bit | succeeded |\r\n| run_lfric_xios_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_lfric_xios_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_mesh_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_1x1P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_2x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_8x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_canned_cubedsphere_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_canned_planar_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c1_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c2_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c2_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c3_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c3_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c3_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-maps_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-maps_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-maps_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op-nonuniform_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op-nonuniform_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op-nonuniform_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-rotated_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-rotated_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-rotated_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_equator-band_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_equator-band_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_equator-band_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_equator_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_equator_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_equator_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_mesh_tools_falklands_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_falklands_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_falklands_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_london-model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_london-model_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_london-model_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_nzlam4_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_nzlam4_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_nzlam4_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-bi-periodic_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-bi-periodic_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-bi-periodic_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-maps_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-maps_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-maps_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-non-periodic_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-non-periodic_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-non-periodic_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-op-lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-op-lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-op-lam_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-centres_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-centres_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-centres_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-nodes_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-nodes_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-nodes_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-points_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-points_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-points_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-x_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-x_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-x_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-y_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-y_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-y_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_polar_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_polar_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_polar_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_uk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_uk_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_uk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_mesh_tools_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_mesh_tools_var-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_var-seuk_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_var-seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_science_unit_tests_azspice_gnu_32bit | succeeded |\r\n| run_science_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_science_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| run_science_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_simple_diffusion_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_simple_diffusion_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_simple_diffusion_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_simple_diffusion_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_simple_diffusion_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_simple_diffusion_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_simple_diffusion_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_skeleton_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_skeleton_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_skeleton_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_skeleton_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_skeleton_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_skeleton_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_skeleton_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| site_validator | succeeded |\r\n| style_checker | succeeded |\r\n| validate_rose_meta | succeeded |\r\n
\r\n\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [X] I have reviewed my changes for potential security issues\r\n- [X] Sensitive data is properly handled (if applicable)\r\n- [X] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [X] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel\r\n interface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [x] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 201, "repository": "MetOffice/lfric_core", "title": "Timing Mod wrapper rewrite", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/201"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjDx7Q", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["mo-rickywong", "christophermaynard"], "sciTech Review": "christophermaynard", "status": "Approved", "title": "Timing Mod wrapper rewrite"}, {"assignees": ["t00sa"], "code Review": "t00sa", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @harry-shepherd\r\nCode Reviewer: @t00sa \r\n\r\n\r\n\r\nThis stand alone change is part of a change set targeting performance management and optimisation, derived from https://code.metoffice.gov.uk/trac/lfric_apps/ticket/1002\r\n\r\nthis change set targets the configuration of tests, MPI management, I/O server interfacing and output file setup.\r\n\r\nThere are no linked or blocking issues for this change, though further changes will depend on it.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource\r\n and have tests been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n\r\n\r\n# Test Suite Results - lfric_apps - spareperformanceTestConfig/run3\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [spareperformanceTestConfig/run3](https://cylchub/services/cylc-review/cycles/mark.hedley/?suite=spareperformanceTestConfig%2Frun3) |\r\n| Suite User | mark.hedley |\r\n| Workflow Start | 2026-01-21T07:54:11 |\r\n| Groups Run | all |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [mo-marqh/lfric_apps@funcSpaceEnum](https://github.com/mo-marqh/lfric_apps/tree/funcSpaceEnum) | False |\r\n| lfric_core | [MetOffice/lfric_core@aa32824](https://github.com/MetOffice/lfric_core/tree/aa32824) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 1456\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any psyclone related code (eg. PsyKAl-lite, Kernal\r\n inteface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 82, "repository": "MetOffice/lfric_apps", "title": "Performance test config", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/82"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjHS9I", "labels": ["cla-modified"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["harry-shepherd", "t00sa"], "sciTech Review": "harry-shepherd", "status": "Done", "title": "Performance test config"}, {"assignees": ["oakleybrunt"], "code Review": "cameronbateman-mo", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @alanjhewitt \r\nCode Reviewer: @cameronbateman-mo \r\n\r\n\r\n\r\n\r\n\r\nThe `lfric_atm` model currently relies on the `noukca` configuration to be able to run with OMP_NUM_THREADS > 1. When using a more standard configuration (e.g. um_dump) the runs fail, citing problems in `ukca_aero_ctl.F90`.\r\n\r\nAfter investigation in #73, the problem was that UKCA segment size was not passed to the initialisation of UKCA when using `dust_and_clim` settings. This is a small fix that mirrors the solution in `ukca_init()` in `um_ukca_init_mod.f90`.\r\n\r\nI also removed the `noukca` configuration from the small threaded tests (C48_MG, C192_MG) since these were only made to get around the problem fixed in this PR.\r\n\r\n> [!WARNING]\r\n> This means that the old KGOs must be removed and new ones added for these tests.\r\n\r\nI have tested C896_MG and tests >1 thread pass and do not require the `noukca` configuration. I tested with both GNU and CCE at fast-debug.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource\r\n and have tests been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n## trac.log\r\n### Test Suite Results - lfric_apps - lfric-multithread/run10\r\n\r\n#### Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | lfric-multithread/run10 |\r\n| Suite User | oakley.brunt |\r\n| Workflow Start | 2026-01-12T08:52:28 |\r\n| Groups Run | all |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [oakleybrunt/LFRicApps@104-craypat](https://github.com/oakleybrunt/LFRicApps/tree/104-craypat) | False |\r\n| lfric_core | [MetOffice/lfric_core@5d4d72f](https://github.com/MetOffice/lfric_core/tree/5d4d72f) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n#### Task Information\r\n
\r\n:x: failed tasks - 6\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| check_lfric_atm_nwp_gal9_1T-C12_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_1T-C48_MG_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_2T-C12_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_2T-C48_MG_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_2T-C48_MG_ex1a_cce_full-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_4T-C48_MG_ex1a_cce_fast-debug-32bit | failed |\r\n
\r\n
\r\n:white_check_mark: succeeded tasks - 1450\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| build_adjoint_tests_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_azspice_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_ex1a_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_adjoint_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_coupled_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gravity_wave_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_gravity_wave_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_gravity_wave_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_gravity_wave_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_gravity_wave_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gungho_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_gungho_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| build_gungho_model_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_model_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| build_gungho_model_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_gungho_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_tests_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_tests_integration_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_jules_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric2lfric_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric2lfric_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_full-debug-32bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_production-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_fast-debug-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_full-debug-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_production-32bit | succeeded |\r\n| build_lfric_atm_ex1a_gnu_fast-debug-32bit | succeeded |\r\n| build_lfric_coupled_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_linear_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_linear_model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_model_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_linear_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_mesh_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_name_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_ngarch_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_ngarch_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_ngarch_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_ngarch_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_physics_schemes_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_physics_schemes_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_shallow_water_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_shallow_water_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_shallow_water_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_shallow_water_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_socrates_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_socrates_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_solver_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_solver_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_solver_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_transport_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_transport_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_transport_ex1a_cce_production-64bit | succeeded |\r\n| build_transport_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| check_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200_realorog-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200_realorog-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-nrun-v-crun | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-nrun-v-crun | succeeded |\r\n| check_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_runge-kutta-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_runge-kutta-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_semi-implicit-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_semi-implicit-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_nwp_gal9-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_nwp_gal9-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_op_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jules_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-seuk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-uk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-uk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-ukv_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-ukv_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric_atm_aquaplanet-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_aquaplanet-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_camembert_case3_gj1214b-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_camembert_case3_gj1214b-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_1T-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_2T-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_4T-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_chem-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9_chem-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9_chem_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_chem_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_comp_tran_ref_3d_l120-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_hd209458b-C24_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_hd209458b-C24_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_casim-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_casim-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_coma9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_coma9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_comorph_dev-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_comorph_dev-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_comorph_tb-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C48_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9-pert-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9-pert-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_coarse_aero-C48_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_coarse_aero-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_coarse_aero_threaded-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_coarse_aero_threaded-C48_MG_ex1a_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_da-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9_da-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9_debug-C12_azspice_gnu_full-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_debug-C12_ex1a_cce_full-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_debug-C48_MG_azspice_gnu_full-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_debug-C48_MG_ex1a_cce_full-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_eda-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9_eda-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9_eda_jada-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9_eda_jada-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9_mol-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9_mol-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_thai_ben1-C48_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_thai_ben1-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_zero-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_zero-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| config_dump_checker | succeeded |\r\n| export-source | succeeded |\r\n| export-source_azspice | succeeded |\r\n| export-source_ex1a | succeeded |\r\n| export-weights_azspice | succeeded |\r\n| export-weights_ex1a | succeeded |\r\n| fcm_make2_drivers | succeeded |\r\n| fcm_make2_lfric_coupled_ocean_ex1a_cce_fast-debug-64bit | succeeded |\r\n| fcm_make_drivers | succeeded |\r\n| fcm_make_lfric_coupled_ocean_ex1a_cce_fast-debug-64bit | succeeded |\r\n| fcm_make_lfric_coupled_river_ex1a_cce_fast-debug-64bit | succeeded |\r\n| generate_weights_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet_lbc_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-falklands_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-var_seuk_lam_azspice_weightgen_script | succeeded |\r\n| global_variables_checker | succeeded |\r\n| housekeep_azspice | succeeded |\r\n| kgo_groups_checker | succeeded |\r\n| local_build_test | succeeded |\r\n| macro_chains_checker | succeeded |\r\n| memory_plot_ex_lfric_atm_nwp_gal9-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| perftools-export_gungho_model_baroclinic-profile_perf-C24_MG_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| pert_compare_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| pert_compare_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| pert_compare_lfric_atm_nwp_gal9-pert-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| pert_compare_lfric_atm_nwp_gal9-pert-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_agnesi_nhyd_cart-BiP360x8-400x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C192_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C96_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bell_3d_cart-BiP300x200-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bryan_fritsch-moist-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_earth-like-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_grabowski-clark-BiP200x10-18x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_held-suarez-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_moist_baroclinic_orog-C48_MG_ex1a_gnu_fast-debug-64bit-crun3 | succeeded |\r\n| plot_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-smag-l300-BiP200x8-5x5_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C96_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar3d_cart-BiP200x200-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_25m-BiP2048x8-25x25_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_50m-BiP1024x8-50x50_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_warm3dbubble-BiP100x100-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_lfric_atm_aquaplanet-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_aquaplanet-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_camembert_case3_gj1214b-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_camembert_case3_gj1214b-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9_chem-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9_chem-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_casim-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_casim-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_coma9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_coma9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_comorph_dev-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_comorph_dev-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_comorph_tb-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C48_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_nwp_gal9-pert-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_nwp_gal9-pert-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_nwp_gal9_coarse_aero-C48_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_nwp_gal9_coarse_aero-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_nwp_gal9_da-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9_da-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9_eda-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9_eda-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9_eda_jada-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9_eda_jada-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9_mol-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9_mol-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_thai_ben1-C48_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_thai_ben1-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_cylinder_xz-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_cylinder_xz-BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C96_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi_ffsl-C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi_ffsl-C96_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi_koren-C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi_koren-C96_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi_mono-C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi_mono-C96_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_vortex_plane-BiP64x64-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_vortex_plane-BiP64x64-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_vortex_plane_vi-BiP64x64-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_vortex_plane_vi-BiP64x64-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_curl_free_reversible_xz_ffsl_bigcfl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_curl_free_reversible_xz_ffsl_bigcfl-BiP100x10-20x20_ex1a_cce_production-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl_bigcfl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl_bigcfl-BiP100x10-20x20_ex1a_cce_production-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C96_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C96_ex1a_cce_production-64bit | succeeded |\r\n| plot_transport_deformation_2d_ffsl_bigcfl-C96_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_ffsl_bigcfl-C96_ex1a_cce_production-64bit | succeeded |\r\n| plot_transport_divergent_2d_cylinder_ffsl_bigcfl-C96_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_divergent_2d_cylinder_ffsl_bigcfl-C96_ex1a_cce_production-64bit | succeeded |\r\n| plot_transport_eternal_fountain_xz_ffsl_bigcfl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_eternal_fountain_xz_ffsl_bigcfl-BiP100x10-20x20_ex1a_cce_production-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_bigcfl-C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_bigcfl-C48_ex1a_cce_production-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| python_unit_tests | succeeded |\r\n| remote-init_azspice | succeeded |\r\n| remote-init_ex1a | succeeded |\r\n| rose-stem_lint_checker | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-var_seuk_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-var_seuk_lam_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_adjoint_tests_canned_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_canned_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_azspice_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_ex1a_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_varying_ls-C12_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_adjoint_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_coupled_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gravity_wave_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_gravity_wave_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gungho_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_gungho_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_agnesi_nhyd_cart-BiP360x8-400x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C192_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C96_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit_pert_off | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit_pert_off | succeeded |\r\n| run_gungho_model_baroclinic-profile_perf-C24_MG_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bell_3d_cart-BiP300x200-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bryan_fritsch-moist-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_gungho_model_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200_realorog-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200_realorog-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_earth-like-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_gh_profile_omp6_6nodes-C192_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_grabowski-clark-BiP200x10-18x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_held-suarez-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_moist_baroclinic_orog-C48_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_moist_baroclinic_orog-C48_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_moist_baroclinic_orog-C48_MG_ex1a_gnu_fast-debug-64bit-crun2 | succeeded |\r\n| run_gungho_model_moist_baroclinic_orog-C48_MG_ex1a_gnu_fast-debug-64bit-crun3 | succeeded |\r\n| run_gungho_model_no-timestep-method-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_no-timestep-method-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-smag-l300-BiP200x8-5x5_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_runge-kutta-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_runge-kutta-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C96_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar3d_cart-BiP200x200-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_semi-implicit-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_semi-implicit-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_25m-BiP2048x8-25x25_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_50m-BiP1024x8-50x50_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_warm3dbubble-BiP100x100-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_gungho_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_tests_integration_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_nwp_gal9-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_nwp_gal9-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_op_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_op_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jules_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jules_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-seuk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-uk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-uk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-ukv_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-ukv_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric_atm_aquaplanet-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_aquaplanet-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_aquaplanet-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_aquaplanet-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_camembert_case3_gj1214b-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_camembert_case3_gj1214b-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_camembert_case3_gj1214b-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_camembert_case3_gj1214b-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_canned_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_1T-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_2T-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_4T-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_chem-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9_chem-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9_chem-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9_chem-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9_chem_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_chem_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_comp_tran_ref_3d_l120-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_hd209458b-C24_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_hd209458b-C24_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_hd209458b-C24_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_hd209458b-C24_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_casim-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_casim-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_casim-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_casim-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_coma9-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_coma9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_coma9-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_coma9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_comorph_dev-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_comorph_dev-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_comorph_dev-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_comorph_dev-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_comorph_tb-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_comorph_tb-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C48_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9-pert-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9-pert-C12_azspice_gnu_fast-debug-32bit_pert_off | succeeded |\r\n| run_lfric_atm_nwp_gal9-pert-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9-pert-C12_ex1a_cce_fast-debug-32bit_pert_off | succeeded |\r\n| run_lfric_atm_nwp_gal9_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_1T-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_2T-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_2T-C48_MG_ex1a_cce_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_4T-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_4T-C48_MG_ex1a_cce_production-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_coarse_aero-C48_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_coarse_aero-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_coarse_aero_threaded-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_coarse_aero_threaded-C48_MG_ex1a_cce_production-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_coarse_aero_threaded-C48_MG_ex1a_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_da-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_da-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_da-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_da-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C12_azspice_gnu_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C12_ex1a_cce_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C48_MG_azspice_gnu_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C48_MG_ex1a_cce_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_eda-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_eda-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_eda-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_eda-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_eda_jada-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_eda_jada-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_eda_jada-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_eda_jada-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_ls_and_jedi-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_ls_and_jedi-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_mol-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_mol-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_mol-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_mol-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3-seuk_ls_and_jedi_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_ral3-seuk_ls_and_jedi_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_thai_ben1-C48_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_thai_ben1-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-var_seuk_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-var_seuk_lam_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_linear_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_linear_model_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_zero-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_zero-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_linear_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_mesh_BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x100-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP1024x8-50x50_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x10-18x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x200-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x8-5x5_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP2048x8-25x25_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP2x2-50000x50000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x200-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP360x8-400x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1500x1500_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_C16_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C192_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_rot_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_rot_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C96_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C96_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C96_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_falklands_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_falklands_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_uk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_uk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_ukv_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_ukv_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_seuk_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_seuk_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_var_seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_var_seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_cylinder_xz-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_cylinder_xz-BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_name_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_ngarch_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_physics_schemes_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_physics_schemes_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_shallow_water_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C96_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi_ffsl-C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi_ffsl-C96_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi_koren-C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi_koren-C96_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi_mono-C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi_mono-C96_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_shallow_water_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_shallow_water_vortex_plane-BiP64x64-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_vortex_plane-BiP64x64-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_vortex_plane_vi-BiP64x64-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_vortex_plane_vi-BiP64x64-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_socrates_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_socrates_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_solver_bicgstab-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_transport_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_curl_free_reversible_xz_ffsl_bigcfl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_curl_free_reversible_xz_ffsl_bigcfl-BiP100x10-20x20_ex1a_cce_production-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl_bigcfl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl_bigcfl-BiP100x10-20x20_ex1a_cce_production-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C96_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C96_ex1a_cce_production-64bit | succeeded |\r\n| run_transport_deformation_2d_ffsl_bigcfl-C96_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_ffsl_bigcfl-C96_ex1a_cce_production-64bit | succeeded |\r\n| run_transport_divergent_2d_cylinder_ffsl_bigcfl-C96_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_divergent_2d_cylinder_ffsl_bigcfl-C96_ex1a_cce_production-64bit | succeeded |\r\n| run_transport_eternal_fountain_xz_ffsl_bigcfl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_eternal_fountain_xz_ffsl_bigcfl-BiP100x10-20x20_ex1a_cce_production-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_bigcfl-C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_bigcfl-C48_ex1a_cce_production-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| site_validator | succeeded |\r\n| style_checker | succeeded |\r\n| test_launch-exe | succeeded |\r\n| validate_rose_meta | succeeded |\r\n
\r\n
\r\n:hourglass: waiting tasks - 1\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| housekeep_ex1a | waiting |\r\n
\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any psyclone related code (eg. PsyKAl-lite, Kernal\r\n inteface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [x] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [x] Documentation is complete and accurate\r\n- [x] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n", "number": 83, "repository": "MetOffice/lfric_apps", "title": "Update UKCA initialisation for dust only to include segment size", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/83"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjNliU", "labels": ["KGO", "cla-modified"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["alanjhewitt", "cameronbateman-mo"], "sciTech Review": "alanjhewitt", "status": "Done", "title": "Update UKCA initialisation for dust only to include segment size"}, {"code Review": "james-bruten-mo", "content": {"body": "# Description\r\n\r\n## Summary\r\n\r\nIf the username is typed into the project box with extra whitespace then workload.py won't find a match to include the review in that persons tally. Strip any extra white space when extracting the reviewers from the project data to avoid this. ", "number": 154, "repository": "MetOffice/SimSys_Scripts", "title": "Fix bug with extra whitespace", "type": "PullRequest", "url": "https://github.com/MetOffice/SimSys_Scripts/pull/154"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjNmlo", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/SimSys_Scripts", "reviewers": ["james-bruten-mo"], "status": "Done", "title": "Fix bug with extra whitespace"}, {"code Review": "ericaneininger", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @EdHone \r\nCode Reviewer: @ericaneininger \r\n\r\n\r\n\r\nThis PR refactors the metadata manipulation that is currently done within a file post processing function.\r\n\r\nOnly one post processing operation remains, which is only needed in the edge case of a limited area model using projected coordinates. This may be able to be done with XIOS in future, but right now this remains a feature gap.\r\n\r\nFor all other metadata specifications, these are implemented using XIOS, and removed from post processing.\r\n\r\nThis also removes the need for MPI `init_wait()` calls from most usage patterns.\r\n\r\nThis change introduces a soft requirement for new XML configuration, forecast reference times will only be output if an appropriately named scalar is provided, normally through XML configuration files (see linked PR)\r\n\r\n- linked MetOffice/lfric_apps#90\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite\r\n using this branch\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (e.g. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (e.g. system\r\n tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource\r\n and have been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n# Test Suite Results - lfric_core - xios3-compatibility-stable3/run2\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | xios3-compatibility-stable3/run2 |\r\n| Suite User | mark.hedley |\r\n| Workflow Start | 2026-01-07T10:29:58 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| lfric_core | [mo-marqh/lfric_core@xios3-compatibility-stable3](https://github.com/mo-marqh/lfric_core/tree/xios3-compatibility-stable3) | False |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n
\r\n:white_check_mark: succeeded tasks - 372\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| build_coupled_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_coupled_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_coupled_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_coupled_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_coupling_unit_tests_azspice_gnu_32bit | succeeded |\r\n| build_coupling_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_coupling_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| build_coupling_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_driver_unit_tests_azspice_gnu_32bit | succeeded |\r\n| build_driver_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_driver_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| build_driver_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_infrastructure_integration_tests_azspice_gnu_32bit | succeeded |\r\n| build_infrastructure_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_infrastructure_integration_tests_ex1a_cce_32bit | succeeded |\r\n| build_infrastructure_integration_tests_ex1a_cce_64bit | succeeded |\r\n| build_infrastructure_unit_tests_azspice_gnu_32bit | succeeded |\r\n| build_infrastructure_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_infrastructure_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| build_infrastructure_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_io_demo_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_io_demo_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_io_demo_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_io_demo_ex1a_cce_fast-debug-32bit | succeeded |\r\n| build_io_demo_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_io_demo_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_io_demo_ex1a_gnu_fast-debug-32bit | succeeded |\r\n| build_io_demo_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_io_demo_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_io_demo_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_lbc_demo_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lbc_demo_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lbc_demo_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lbc_demo_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric_xios_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_lfric_xios_integration_tests_ex1a_cce_64bit | succeeded |\r\n| build_lfric_xios_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_lfric_xios_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_mesh_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_tools_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_tools_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_mesh_tools_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_mesh_tools_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_mesh_tools_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_tools_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_mesh_tools_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_science_unit_tests_azspice_gnu_32bit | succeeded |\r\n| build_science_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_science_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| build_science_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_simple_diffusion_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_simple_diffusion_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_simple_diffusion_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_simple_diffusion_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_simple_diffusion_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_simple_diffusion_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_simple_diffusion_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_skeleton_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_skeleton_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_skeleton_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_skeleton_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_skeleton_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_skeleton_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_skeleton_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| check_coupled_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_coupled_default-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_coupled_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_coupled_default-C12_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_io_demo_default-C24_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_io_demo_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_io_demo_default-C24_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_io_demo_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_io_demo_multifile-C24_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_io_demo_multifile-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_io_demo_multifile-C24_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_io_demo_multifile-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_io_demo_multifile-C24_ex1a_gnu_fast-debug-32bit | succeeded |\r\n| check_io_demo_multifile-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_ConstantLBC-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_ConstantLBC-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_lbc_demo_ConstantLBC-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_ConstantLBC-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_1x1P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_1x1P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_2x2P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_2x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_8x2P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_8x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_lbc_demo_default-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_default-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_lbc_demo_default-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_default-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c1_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c2_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c2_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c3_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c3_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c3_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-maps_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-maps_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-maps_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op-nonuniform_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op-nonuniform_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op-nonuniform_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-rotated_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-rotated_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-rotated_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_equator-band_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_equator-band_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_equator-band_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_equator_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_equator_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_equator_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_mesh_tools_falklands_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_falklands_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_falklands_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_london-model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_london-model_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_london-model_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_nzlam4_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_nzlam4_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_nzlam4_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-bi-periodic_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-bi-periodic_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-bi-periodic_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-maps_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-maps_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-maps_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-non-periodic_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-non-periodic_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-non-periodic_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-op-lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-op-lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-op-lam_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-centres_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-centres_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-centres_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-nodes_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-nodes_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-nodes_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-points_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-points_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-points_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-x_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-x_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-x_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-y_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-y_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-y_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_polar_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_polar_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_polar_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_uk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_uk_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_uk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_var-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_var-seuk_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_var-seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_simple_diffusion_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_simple_diffusion_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_simple_diffusion_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| check_skeleton_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_skeleton_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_skeleton_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| config_dump_checker | succeeded |\r\n| export-source | succeeded |\r\n| export-source_azspice | succeeded |\r\n| export-source_ex1a | succeeded |\r\n| global_variables_checker | succeeded |\r\n| housekeep_azspice | succeeded |\r\n| housekeep_ex1a | succeeded |\r\n| python_unit_tests | succeeded |\r\n| remote-init_azspice | succeeded |\r\n| remote-init_ex1a | succeeded |\r\n| rose-stem_lint_checker | succeeded |\r\n| run_coupled_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_coupled_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_coupled_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_coupled_default-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_coupled_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_coupled_default-C12_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_coupling_unit_tests_azspice_gnu_32bit | succeeded |\r\n| run_coupling_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_coupling_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| run_coupling_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_driver_unit_tests_azspice_gnu_32bit | succeeded |\r\n| run_driver_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_driver_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| run_driver_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_infrastructure_integration_tests_azspice_gnu_32bit | succeeded |\r\n| run_infrastructure_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_infrastructure_integration_tests_ex1a_cce_32bit | succeeded |\r\n| run_infrastructure_integration_tests_ex1a_cce_64bit | succeeded |\r\n| run_infrastructure_unit_tests_azspice_gnu_32bit | succeeded |\r\n| run_infrastructure_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_infrastructure_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| run_infrastructure_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_io_demo_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_io_demo_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_io_demo_default-C24_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_io_demo_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_io_demo_default-C24_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_io_demo_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_io_demo_multifile-C24_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_io_demo_multifile-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_io_demo_multifile-C24_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_io_demo_multifile-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_io_demo_multifile-C24_ex1a_gnu_fast-debug-32bit | succeeded |\r\n| run_io_demo_multifile-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_io_demo_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_io_demo_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_lbc_demo_ConstantLBC-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_ConstantLBC-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lbc_demo_ConstantLBC-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_ConstantLBC-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_IntegerFields-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_IntegerFields-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lbc_demo_IntegerFields-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_IntegerFields-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_1x1P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_1x1P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_2x2P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_2x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_8x2P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_8x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lbc_demo_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_default-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_default-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lbc_demo_default-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_default-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric_xios_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_lfric_xios_integration_tests_ex1a_cce_64bit | succeeded |\r\n| run_lfric_xios_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_lfric_xios_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_mesh_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_1x1P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_2x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_8x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_canned_cubedsphere_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_canned_planar_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c1_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c2_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c2_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c3_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c3_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c3_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-maps_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-maps_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-maps_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op-nonuniform_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op-nonuniform_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op-nonuniform_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-rotated_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-rotated_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-rotated_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_equator-band_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_equator-band_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_equator-band_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_equator_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_equator_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_equator_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_mesh_tools_falklands_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_falklands_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_falklands_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_london-model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_london-model_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_london-model_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_nzlam4_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_nzlam4_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_nzlam4_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-bi-periodic_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-bi-periodic_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-bi-periodic_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-maps_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-maps_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-maps_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-non-periodic_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-non-periodic_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-non-periodic_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-op-lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-op-lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-op-lam_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-centres_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-centres_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-centres_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-nodes_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-nodes_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-nodes_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-points_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-points_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-points_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-x_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-x_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-x_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-y_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-y_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-y_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_polar_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_polar_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_polar_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_uk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_uk_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_uk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_mesh_tools_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_mesh_tools_var-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_var-seuk_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_var-seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_science_unit_tests_azspice_gnu_32bit | succeeded |\r\n| run_science_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_science_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| run_science_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_simple_diffusion_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_simple_diffusion_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_simple_diffusion_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_simple_diffusion_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_simple_diffusion_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_simple_diffusion_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_simple_diffusion_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_skeleton_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_skeleton_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_skeleton_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_skeleton_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_skeleton_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_skeleton_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_skeleton_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| site_validator | succeeded |\r\n| style_checker | succeeded |\r\n| validate_rose_meta | succeeded |\r\n
\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel\r\n interface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 204, "repository": "MetOffice/lfric_core", "title": "reducing post-processing of XIOS output", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/204"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjSRtQ", "labels": ["cla-signed"], "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["EdHone"], "sciTech Review": "EdHone", "status": "Changes Requested", "title": "reducing post-processing of XIOS output"}, {"assignees": ["mo-marqh"], "code Review": "ericaneininger", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @EdHone \r\nCode Reviewer: @ericaneininger \r\n\r\n\r\n\r\nThis change provides extra configuration to the output file metadata, using an XIOS `scalar` to define a container for a forecast reference time that will be populated by lfric_core's lfric_xios interface (see linked PR)\r\n\r\n\r\n- linked MetOffice/lfric_core#204\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource\r\n and have tests been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n# Test Suite Results - lfric_apps - scalar_frt/run2\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | scalar_frt/run2 |\r\n| Suite User | mark.hedley |\r\n| Workflow Start | 2026-01-06T15:34:20 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [mo-marqh/lfric_apps@scalar_frt](https://github.com/mo-marqh/lfric_apps/tree/scalar_frt) | False |\r\n| lfric_core | [mo-marqh/lfric_core@06cc787](https://github.com/mo-marqh/lfric_core/tree/06cc787) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n
\r\n:x: failed tasks - 2\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_fast-debug-64bit | failed |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_fast-debug-64bit | failed |\r\n
\r\n
\r\n:white_check_mark: succeeded tasks - 1102\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| build_adjoint_tests_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_azspice_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_ex1a_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_adjoint_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_coupled_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gravity_wave_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_gravity_wave_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_gravity_wave_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_gravity_wave_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_gravity_wave_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gungho_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_gungho_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| build_gungho_model_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_model_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| build_gungho_model_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_gungho_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_tests_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_tests_integration_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_jules_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric2lfric_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric2lfric_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_full-debug-32bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_production-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_fast-debug-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_full-debug-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_production-32bit | succeeded |\r\n| build_lfric_coupled_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_linear_model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_model_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_linear_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_mesh_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_name_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_ngarch_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_ngarch_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_ngarch_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_ngarch_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_physics_schemes_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_physics_schemes_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_shallow_water_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_shallow_water_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_shallow_water_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_shallow_water_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_solver_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_solver_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_solver_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_transport_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_transport_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_transport_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| check_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200_realorog-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200_realorog-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-nrun-v-crun | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-nrun-v-crun | succeeded |\r\n| check_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_runge-kutta-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_runge-kutta-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_semi-implicit-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_semi-implicit-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_nwp_gal9-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_nwp_gal9-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jules_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-seuk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_chem_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_chem_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9_debug-C12_azspice_gnu_full-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_debug-C12_ex1a_cce_full-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_noukca_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_noukca_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_zero-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_zero-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| config_dump_checker | succeeded |\r\n| export-source | succeeded |\r\n| export-source_azspice | succeeded |\r\n| export-source_ex1a | succeeded |\r\n| export-weights_azspice | succeeded |\r\n| export-weights_ex1a | succeeded |\r\n| fcm_make2_drivers | succeeded |\r\n| fcm_make2_lfric_coupled_ocean_ex1a_cce_fast-debug-64bit | succeeded |\r\n| fcm_make_drivers | succeeded |\r\n| fcm_make_lfric_coupled_ocean_ex1a_cce_fast-debug-64bit | succeeded |\r\n| fcm_make_lfric_coupled_river_ex1a_cce_fast-debug-64bit | succeeded |\r\n| generate_weights_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet_lbc_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-falklands_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_azspice_weightgen_script | succeeded |\r\n| global_variables_checker | succeeded |\r\n| local_build_test | succeeded |\r\n| macro_chains_checker | succeeded |\r\n| perftools-export_gungho_model_baroclinic-profile_perf-C24_MG_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| pert_compare_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| pert_compare_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_cylinder_xz-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_cylinder_xz-BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| python_unit_tests | succeeded |\r\n| remote-init_azspice | succeeded |\r\n| remote-init_ex1a | succeeded |\r\n| rose-stem_lint_checker | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_adjoint_tests_canned_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_canned_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_azspice_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_ex1a_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_varying_ls-C12_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_adjoint_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_coupled_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gravity_wave_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_gravity_wave_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gungho_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_gungho_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit_pert_off | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit_pert_off | succeeded |\r\n| run_gungho_model_baroclinic-profile_perf-C24_MG_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_gungho_model_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200_realorog-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200_realorog-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_no-timestep-method-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_no-timestep-method-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_runge-kutta-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_runge-kutta-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_semi-implicit-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_semi-implicit-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_gungho_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_tests_integration_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_nwp_gal9-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_nwp_gal9-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jules_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jules_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-seuk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric_atm_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_canned_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_chem_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_chem_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C12_azspice_gnu_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C12_ex1a_cce_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_linear_model_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_zero-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_zero-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_linear_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_mesh_BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP2x2-50000x50000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1500x1500_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_C16_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_rot_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_rot_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_falklands_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_falklands_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_seuk_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_seuk_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_cylinder_xz-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_cylinder_xz-BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_name_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_ngarch_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_physics_schemes_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_physics_schemes_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_shallow_water_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_shallow_water_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_transport_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| site_validator | succeeded |\r\n| style_checker | succeeded |\r\n| test_launch-exe | succeeded |\r\n| validate_rose_meta | succeeded |\r\n
\r\n
\r\n:hourglass: waiting tasks - 2\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| housekeep_azspice | waiting |\r\n| housekeep_ex1a | waiting |\r\n
\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any psyclone related code (eg. PsyKAl-lite, Kernal\r\n inteface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 90, "repository": "MetOffice/lfric_apps", "title": "File metadata and Forecast reference Time Scalar to reduce post processing from lfric core", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/90"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjSRt8", "labels": ["cla-signed"], "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["EdHone"], "sciTech Review": "EdHone", "status": "Changes Requested", "title": "File metadata and Forecast reference Time Scalar to reduce post processing from lfric core"}, {"assignees": ["james-bruten-mo"], "code Review": "jennyhickson", "content": {"body": "This reusable workflow adds the ability to edit the Simulation Systems Review Tracker project.\r\nBased on the reviewer entries in the PR template it will fill in the reviewer fields in the tracker.\r\nBased on completed reviews by the SR and CR it will modify the project state.\r\nIt automatically adds the PR author as an assignee.\r\nIt will request a review from the CR if they are not already added.\r\n\r\nTo edit projects requires a PAT with project write access to be added as a secret to each calling repository. I propose we add a PAT to the umadmin account with that permission and use this as the secret for each repo.\r\n\r\nThere's a PR in the git_playground demonstrating it working https://github.com/MetOffice/git_playground/pull/112\r\n\r\nWe probably also want to check it works on the git_playground as a reusable workflow as well.", "number": 52, "repository": "MetOffice/growss", "title": "Action to move PRs through project state", "type": "PullRequest", "url": "https://github.com/MetOffice/growss/pull/52"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjVJNs", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/growss", "reviewers": ["yaswant", "jennyhickson", "t00sa"], "sciTech Review": "yaswant", "status": "Done", "title": "Action to move PRs through project state"}, {"assignees": ["alanjhewitt"], "code Review": "cameronbateman-mo", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @melissaebrooks \r\nCode Reviewer: @cameronbateman-mo \r\n\r\n\r\n\r\n\r\n\r\nI developed aerosol AOD diagnostics in FCM 440\r\n\r\nThe outputs looked fine at low resolution, but recent high resolution modelling has indicated that I got the addressing wrong.\r\n\r\nI made a bug fix branch in FCM 1089 and will now fix it in GitHub branch.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource\r\n and have tests been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n# Test Suite Results - lfric_apps - AOD_bug/run2\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | AOD_bug/run2 |\r\n| Suite User | alan.j.hewitt |\r\n| Workflow Start | 2025-12-16T16:00:21 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [alanjhewitt/lfric_apps@AOD_bug](https://github.com/alanjhewitt/lfric_apps/tree/AOD_bug) | False |\r\n| lfric_core | [MetOffice/lfric_core@2025.12.1](https://github.com/MetOffice/lfric_core/tree/2025.12.1) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n
\r\n:x: failed tasks - 1\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| run_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | failed |\r\n
\r\n
\r\n:white_check_mark: succeeded tasks - 1102\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| build_adjoint_tests_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| site_validator | succeeded |\r\n| style_checker | succeeded |\r\n| test_launch-exe | succeeded |\r\n| validate_rose_meta | succeeded |\r\n
\r\n
\r\n:hourglass: waiting tasks - 1\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| housekeep_azspice | waiting |\r\n
\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any psyclone related code (eg. PsyKAl-lite, Kernal\r\n inteface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 94, "repository": "MetOffice/lfric_apps", "title": "Bug in AOD diagnostics", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/94"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjVKD8", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["melissaebrooks", "cameronbateman-mo"], "sciTech Review": "melissaebrooks", "status": "Done", "title": "Bug in AOD diagnostics"}, {"assignees": ["jennyhickson"], "code Review": "james-bruten-mo", "content": {"body": "Sci/Tech Reviewer: @yaswant \r\nCode Reviewer: @james-bruten-mo \r\n\r\n# Description\r\n\r\n## Summary\r\n\r\nCreate a new helper script for managing milestones across multiple repositories. Milestones can be created, updated, listed, closed or deleted. \r\n\r\nMilestones have been setup across the repositories, e.g. \r\nhttps://github.com/MetOffice/um/milestones\r\nhttps://github.com/MetOffice/lfric_apps/milestones\r\n\r\nand closing and editing have been tested using git_playground. \r\n## Changes\r\n\r\nSingle new script. \r\n\r\n## Dependency\r\n\r\nScript is dependant on having the right priveledges and gh api setup. \r\n\r\n## Impact\r\n\r\nNo impact. \r\n\r\n## Issues addressed\r\n\r\nResolves\r\n\r\n_List issue(s) related to this PR._\r\n\r\n## Coordinated merge\r\n\r\n_Specify any coordinated merges here._\r\n\r\n\r\n## Checklist\r\n\r\n- [x ] I have performed a self-review of my own changes\r\n", "number": 155, "repository": "MetOffice/SimSys_Scripts", "title": "Milestone manager", "type": "PullRequest", "url": "https://github.com/MetOffice/SimSys_Scripts/pull/155"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjVcPM", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/SimSys_Scripts", "reviewers": ["yaswant", "james-bruten-mo"], "sciTech Review": "yaswant", "status": "Done", "title": "Milestone manager"}, {"assignees": ["james-bruten-mo"], "content": {"body": "See #52\r\nCommitting this branch to develop in order to test in the git_playground", "number": 53, "repository": "MetOffice/growss", "title": "Project edit action", "type": "PullRequest", "url": "https://github.com/MetOffice/growss/pull/53"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjV2Cw", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/growss", "status": "Done", "title": "Project edit action"}, {"assignees": ["Pierre-siddall"], "code Review": "james-bruten-mo", "content": {"body": "# Description\r\n\r\nFixing suite_report_git.py\r\n\r\n## Summary\r\nCurrently suite_report_git.py does not provide a link to the cylc review page for a suite name and reports all succeeding tasks to make the suite report shorter to read, only failing tasks need to be reported additionally it would be useful for code reviewers if a link to the cylc review page for a suite run was provided as part of the report to enable clearer feedback through easier diagnosis of failing tasks. \r\n\r\n## Changes\r\n\r\nThis PR will change the formatting of the suite report \r\n\r\n## Dependency\r\n\r\nN/A\r\n\r\n## Impact\r\n\r\nN/A\r\n## Issues addressed\r\n\r\nResolves #156 and resolves #157 \r\n\r\n## Coordinated merge\r\nN/A\r\n\r\n\r\n## Checklist\r\n\r\n- [x] I have performed a self-review of my own changes\r\n\r\n\r\n## Trac.log\r\n# Test Suite Results - um - test_report/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [test_report/run1](https://cylchub/services/cylc-review/cycles/pierre.siddall/?suite=test_report%2Frun1) |\r\n| Suite User | pierre.siddall |\r\n| Workflow Start | 2026-01-14T16:35:03 |\r\n| Groups Run | check_groups_coverage |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| mule | [MetOffice/mule@2025.10.1](https://github.com/MetOffice/mule/tree/2025.10.1) | True |\r\n| shumlib | [MetOffice/shumlib@2025.10.1](https://github.com/MetOffice/shumlib/tree/2025.10.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [Pierre-siddall/SimSys_Scripts@fix_suite_report](https://github.com/Pierre-siddall/SimSys_Scripts/tree/fix_suite_report) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n| um | [Pierre-siddall/um@test-report](https://github.com/Pierre-siddall/um/tree/test-report) | False |\r\n| um_aux | [MetOffice/um_aux@2025.12.1](https://github.com/MetOffice/um_aux/tree/2025.12.1) | True |\r\n| um_meta | [MetOffice/um_meta@2025.12.1](https://github.com/MetOffice/um_meta/tree/2025.12.1) | True |\r\n\r\n## Approvals\r\n### Code Owners\r\n* No UM Code Owners Required\r\n### Config Owners\r\nNo UM Config Owners Required\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 5\r\n\r\n\r\n", "number": 158, "repository": "MetOffice/SimSys_Scripts", "title": "Fix suite report", "type": "PullRequest", "url": "https://github.com/MetOffice/SimSys_Scripts/pull/158"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjYe2E", "labels": ["enhancement"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/SimSys_Scripts", "reviewers": ["james-bruten-mo", "james-bruten-mo", "james-bruten-mo"], "status": "Done", "title": "Fix suite report"}, {"code Review": "Pierre-siddall", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @Pierre-siddall \r\n\r\n\r\n\r\nThis is a trivial change to look at the working practices and add my name to the `contributors.md` file. I haven't run any testing.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's style guidelines\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have tests been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any psyclone related code (eg. PsyKAl-lite, Kernal\r\n inteface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 96, "repository": "MetOffice/lfric_apps", "title": "Add Harry Shepherd to CONTRIBUTORS.md", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/96"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjYo8E", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["Pierre-siddall"], "status": "Done", "title": "Add Harry Shepherd to CONTRIBUTORS.md"}, {"code Review": "Pierre-siddall", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @Pierre-siddall \r\n\r\n\r\n\r\nThis is a trivial change to look at the working practices and add my name to the contributors.md file. I haven't run any testing.\r\n\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid understanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite\r\n using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel\r\n interface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 207, "repository": "MetOffice/lfric_core", "title": "Add Harry Shepherd to CONTRIBUTORS.md", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/207"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjYpJY", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["Pierre-siddall"], "status": "Done", "title": "Add Harry Shepherd to CONTRIBUTORS.md"}, {"assignees": ["james-bruten-mo"], "code Review": "yaswant", "content": {"body": "The grep in the check-cr-approved action doesn't allow for usernames with capitalised letters. Make the grep case insensitive to allow for this", "number": 55, "repository": "MetOffice/growss", "title": "make grep case insensitive", "type": "PullRequest", "url": "https://github.com/MetOffice/growss/pull/55"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjYzSk", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/growss", "reviewers": ["yaswant"], "status": "Done", "title": "make grep case insensitive"}, {"assignees": ["bblay-mo"], "content": {"body": "# PR Summary\r\nAdd Section 20 diagnostic _thickness of geopotential height at two pressure levels_, as described in https://github.com/MetOffice/Section20/issues/11.\r\n\r\nTodo:\r\n - [ ] **Wait for Paul to make suites work with lfric apps vn3.0/GitHub**\r\n - [ ] I've discovered that we don't need the DOF loop in the kernel because we're processing lowest order W3 data. However, I don' t know if we can guarantee that we'll only see such data in the future. I need to either a) discuss this with someone who knows the use cases / problem domain, or just leave the loop in to be future-proof - but does that incur a significant overhead?\r\n - [ ] Are the standard name and long name correct?\r\n - [ ] [How] do we check the new fields are correct using KGOs?\r\n - The kgo update didn't do anything. I assume we need to wait for the suite upgrade.\r\n - [ ] I can't remember why the thickness fields are initialised to 1.0 before the kernel is called, and not 0.0.\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's style guidelines\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have tests been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any psyclone related code (eg. PsyKAl-lite, Kernal\r\n inteface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 98, "repository": "MetOffice/lfric_apps", "title": "S20 Diags: geopot thickness", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/98"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjZLG0", "labels": ["cla-signed"], "repository": "https://github.com/MetOffice/lfric_apps", "status": "In Progress", "title": "S20 Diags: geopot thickness"}, {"assignees": ["ricky-lv426"], "code Review": "ericaneininger", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @MetBenjaminWent\r\nCode Reviewer: @ericaneininger\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have tests been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any psyclone related code (eg. PsyKAl-lite, Kernal\r\n inteface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [x] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [x] Documentation is complete and accurate\r\n- [x] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n", "number": 99, "repository": "MetOffice/lfric_apps", "title": "Gregory-Rowntree convection - PSyclone optimisation and conversion from CELL_COLUMN to DOMAIN kernel", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/99"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjZbG8", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["ericaneininger", "MetBenjaminWent", "ericaneininger"], "sciTech Review": "MetBenjaminWent", "status": "Done", "title": "Gregory-Rowntree convection - PSyclone optimisation and conversion from CELL_COLUMN to DOMAIN kernel"}, {"assignees": ["Adrian-Lock"], "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @P-Burns \r\nCode Reviewer: \r\n\r\n\r\n\r\n\r\nThe boundary_layer code imported to lfric_apps from the UM contained a number of old options that are no longer used and are not even available in lfric_apps. Here, I'm taking this opportunity to remove 3 of these switches (l_lambdam2, l_full_lambdas and var_diags_opt). This then also permits a more logical reorganisation of the code in ex_coef that should make it easier to read and also to modify further in the future. Scientifically there are no changes at all and the KGO are preserved.\r\nNote that I did also try removing a 4th hardwired switch, l_use_var_fixes, but so-doing broke KGO (for just the \r\ncoupled_nwp_gal9_64bit app, presumably due to some interaction with the compiler optimisation in the subroutine excf_nl.F90) so I've have reverted that change in the latest revision. Subject to discussion with reviewers.\r\n\r\nUpdate 21/01/2026: following discussions with the Sci-tech reviewer, I've now removed the redundant variable h_blend_orog all through the LFRic code tree (it was being passed from JULES but always containing zeros as the effective orographic roughness scheme is not available in LFRic, and has been superseded by the distributed version in all configurations). All developer tests still maintain kgo, see updated trac.log below.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes): no changes to kgo\r\n- [x] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.): no new functionality added\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource\r\n and have tests been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes): no new tests added or needed\r\n\r\n\r\n\r\n### trac.log\r\n\r\n# Test Suite Results - lfric_apps - ex_coef_tidy/run4\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [ex_coef_tidy/run4](https://cylchub/services/cylc-review/cycles/adrian.lock/?suite=ex_coef_tidy%2Frun4) |\r\n| Suite User | adrian.lock |\r\n| Workflow Start | 2026-01-22T21:07:25 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [Adrian-Lock/lfric_apps@ex_coef_tidy](https://github.com/Adrian-Lock/lfric_apps/tree/ex_coef_tidy) | False |\r\n| lfric_core | [MetOffice/lfric_core@5d4d72f](https://github.com/MetOffice/lfric_core/tree/5d4d72f) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 1106\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [x] None of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly: no changes needed\r\n\r\n## PSyclone Approval\r\n\r\n- [x] If you have edited any psyclone related code (eg. PsyKAl-lite, Kernal\r\n inteface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 101, "repository": "MetOffice/lfric_apps", "title": "Remove redundant options and restructure code in ex_coef to be easier to follow and modify further in future", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/101"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjZkl0", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["P-Burns"], "sciTech Review": "P-Burns", "status": "Code Review", "title": "Remove redundant options and restructure code in ex_coef to be easier to follow and modify further in future"}, {"code Review": "mike-hobson ", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @mike-hobson \r\n\r\n\r\n\r\n\r\n\r\nUpdates to the documentation following migration of the code to Github.\r\n\r\nRetires FCM references and adds git advice. Also includes instructions for building documentation and updates the summary of software requirements.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid understanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite\r\n using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel\r\n interface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\nSkipping Sci/Tech as this is a trivial, documentation-only PR\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [x] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n", "number": 208, "repository": "MetOffice/lfric_core", "title": "Remove references to FCM following Git migration", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/208"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjZ1xU", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["mike-hobson", "mike-hobson"], "status": "Done", "title": "Remove references to FCM following Git migration"}, {"assignees": ["james-bruten-mo"], "code Review": "Pierre-siddall", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @Pierre-siddall \r\n\r\n\r\n\r\nIt's been spotted that there's still a broken symlink pointing at the xc40s. This is causing some problems for extracting via rose-extract so fixing here.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have tests been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any psyclone related code (eg. PsyKAl-lite, Kernal\r\n inteface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 102, "repository": "MetOffice/lfric_apps", "title": "update symlink", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/102"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjb0M0", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["Pierre-siddall", "yaswant"], "status": "Done", "title": "update symlink"}, {"code Review": "@MatthewHambley", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: N/A\r\nCode Reviewer: @MatthewHambley \r\n\r\n\r\n\r\n\r\nThe number of leading spaces from Makefile messages across the code base is inconistent and annoying - this PR fixes this.\r\n\r\n\r\n\r\n\r\n- closes #209 \r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite\r\n using this branch\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (e.g. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (e.g. system\r\n tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource\r\n and have been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n# Test Suite Results - lfric_core - lfric_core-consistent-test-logging/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | lfric_core-consistent-test-logging/run1 |\r\n| Suite User | edward.hone |\r\n| Workflow Start | 2026-01-09T11:04:12 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| lfric_core | [EdHone/lfric_core@consistent-test-logging](https://github.com/EdHone/lfric_core/tree/consistent-test-logging) | False |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n
\r\n:white_check_mark: succeeded tasks - 372\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| build_coupled_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_coupled_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_coupled_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_coupled_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_coupling_unit_tests_azspice_gnu_32bit | succeeded |\r\n| build_coupling_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_coupling_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| build_coupling_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_driver_unit_tests_azspice_gnu_32bit | succeeded |\r\n| build_driver_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_driver_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| build_driver_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_infrastructure_integration_tests_azspice_gnu_32bit | succeeded |\r\n| build_infrastructure_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_infrastructure_integration_tests_ex1a_cce_32bit | succeeded |\r\n| build_infrastructure_integration_tests_ex1a_cce_64bit | succeeded |\r\n| build_infrastructure_unit_tests_azspice_gnu_32bit | succeeded |\r\n| build_infrastructure_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_infrastructure_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| build_infrastructure_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_io_demo_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_io_demo_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_io_demo_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_io_demo_ex1a_cce_fast-debug-32bit | succeeded |\r\n| build_io_demo_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_io_demo_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_io_demo_ex1a_gnu_fast-debug-32bit | succeeded |\r\n| build_io_demo_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_io_demo_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_io_demo_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_lbc_demo_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lbc_demo_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lbc_demo_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lbc_demo_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric_xios_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_lfric_xios_integration_tests_ex1a_cce_64bit | succeeded |\r\n| build_lfric_xios_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_lfric_xios_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_mesh_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_tools_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_tools_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_mesh_tools_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_mesh_tools_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_mesh_tools_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_tools_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_mesh_tools_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_science_unit_tests_azspice_gnu_32bit | succeeded |\r\n| build_science_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_science_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| build_science_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_simple_diffusion_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_simple_diffusion_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_simple_diffusion_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_simple_diffusion_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_simple_diffusion_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_simple_diffusion_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_simple_diffusion_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_skeleton_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_skeleton_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_skeleton_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_skeleton_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_skeleton_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_skeleton_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_skeleton_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| check_coupled_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_coupled_default-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_coupled_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_coupled_default-C12_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_io_demo_default-C24_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_io_demo_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_io_demo_default-C24_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_io_demo_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_io_demo_multifile-C24_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_io_demo_multifile-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_io_demo_multifile-C24_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_io_demo_multifile-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_io_demo_multifile-C24_ex1a_gnu_fast-debug-32bit | succeeded |\r\n| check_io_demo_multifile-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_ConstantLBC-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_ConstantLBC-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_lbc_demo_ConstantLBC-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_ConstantLBC-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_1x1P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_1x1P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_2x2P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_2x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_8x2P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_8x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_lbc_demo_default-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_default-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_lbc_demo_default-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_default-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c1_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c2_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c2_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c3_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c3_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c3_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-maps_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-maps_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-maps_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op-nonuniform_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op-nonuniform_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op-nonuniform_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-rotated_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-rotated_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-rotated_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_equator-band_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_equator-band_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_equator-band_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_equator_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_equator_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_equator_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_mesh_tools_falklands_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_falklands_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_falklands_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_london-model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_london-model_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_london-model_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_nzlam4_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_nzlam4_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_nzlam4_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-bi-periodic_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-bi-periodic_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-bi-periodic_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-maps_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-maps_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-maps_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-non-periodic_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-non-periodic_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-non-periodic_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-op-lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-op-lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-op-lam_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-centres_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-centres_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-centres_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-nodes_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-nodes_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-nodes_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-points_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-points_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-points_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-x_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-x_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-x_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-y_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-y_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-y_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_polar_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_polar_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_polar_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_uk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_uk_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_uk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_var-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_var-seuk_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_var-seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_simple_diffusion_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_simple_diffusion_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_simple_diffusion_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| check_skeleton_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_skeleton_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_skeleton_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| config_dump_checker | succeeded |\r\n| export-source | succeeded |\r\n| export-source_azspice | succeeded |\r\n| export-source_ex1a | succeeded |\r\n| global_variables_checker | succeeded |\r\n| housekeep_azspice | succeeded |\r\n| housekeep_ex1a | succeeded |\r\n| python_unit_tests | succeeded |\r\n| remote-init_azspice | succeeded |\r\n| remote-init_ex1a | succeeded |\r\n| rose-stem_lint_checker | succeeded |\r\n| run_coupled_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_coupled_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_coupled_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_coupled_default-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_coupled_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_coupled_default-C12_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_coupling_unit_tests_azspice_gnu_32bit | succeeded |\r\n| run_coupling_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_coupling_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| run_coupling_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_driver_unit_tests_azspice_gnu_32bit | succeeded |\r\n| run_driver_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_driver_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| run_driver_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_infrastructure_integration_tests_azspice_gnu_32bit | succeeded |\r\n| run_infrastructure_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_infrastructure_integration_tests_ex1a_cce_32bit | succeeded |\r\n| run_infrastructure_integration_tests_ex1a_cce_64bit | succeeded |\r\n| run_infrastructure_unit_tests_azspice_gnu_32bit | succeeded |\r\n| run_infrastructure_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_infrastructure_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| run_infrastructure_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_io_demo_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_io_demo_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_io_demo_default-C24_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_io_demo_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_io_demo_default-C24_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_io_demo_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_io_demo_multifile-C24_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_io_demo_multifile-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_io_demo_multifile-C24_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_io_demo_multifile-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_io_demo_multifile-C24_ex1a_gnu_fast-debug-32bit | succeeded |\r\n| run_io_demo_multifile-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_io_demo_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_io_demo_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_lbc_demo_ConstantLBC-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_ConstantLBC-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lbc_demo_ConstantLBC-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_ConstantLBC-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_IntegerFields-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_IntegerFields-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lbc_demo_IntegerFields-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_IntegerFields-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_1x1P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_1x1P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_2x2P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_2x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_8x2P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_8x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lbc_demo_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_default-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_default-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lbc_demo_default-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_default-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric_xios_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_lfric_xios_integration_tests_ex1a_cce_64bit | succeeded |\r\n| run_lfric_xios_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_lfric_xios_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_mesh_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_1x1P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_2x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_8x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_canned_cubedsphere_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_canned_planar_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c1_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c2_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c2_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c3_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c3_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c3_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-maps_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-maps_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-maps_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op-nonuniform_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op-nonuniform_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op-nonuniform_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-rotated_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-rotated_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-rotated_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_equator-band_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_equator-band_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_equator-band_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_equator_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_equator_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_equator_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_mesh_tools_falklands_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_falklands_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_falklands_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_london-model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_london-model_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_london-model_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_nzlam4_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_nzlam4_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_nzlam4_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-bi-periodic_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-bi-periodic_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-bi-periodic_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-maps_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-maps_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-maps_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-non-periodic_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-non-periodic_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-non-periodic_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-op-lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-op-lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-op-lam_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-centres_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-centres_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-centres_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-nodes_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-nodes_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-nodes_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-points_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-points_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-points_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-x_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-x_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-x_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-y_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-y_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-y_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_polar_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_polar_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_polar_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_uk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_uk_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_uk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_mesh_tools_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_mesh_tools_var-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_var-seuk_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_var-seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_science_unit_tests_azspice_gnu_32bit | succeeded |\r\n| run_science_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_science_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| run_science_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_simple_diffusion_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_simple_diffusion_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_simple_diffusion_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_simple_diffusion_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_simple_diffusion_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_simple_diffusion_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_simple_diffusion_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_skeleton_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_skeleton_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_skeleton_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_skeleton_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_skeleton_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_skeleton_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_skeleton_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| site_validator | succeeded |\r\n| style_checker | succeeded |\r\n| validate_rose_meta | succeeded |\r\n
\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel\r\n interface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [x] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [x] Documentation is complete and accurate\r\n- [x] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n", "number": 210, "repository": "MetOffice/lfric_core", "title": "Remove additional leading space from make message calls", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/210"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjcOBI", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["MatthewHambley", "stevemullerworth"], "status": "Done", "title": "Remove additional leading space from make message calls"}, {"assignees": ["yaswant"], "code Review": "andrewcoughtrie", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: NA\r\nCode Reviewer: @andrewcoughtrie \r\n\r\nThe PR body was adding literal line breaks as specified in the template, which was not ideal. I have removed the 80-character markdown formatting restriction from the template to improve how it displays on GitHub PRs.\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n**NA**\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite\r\n using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n**NA**\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n**NA**\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [x] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [x] Documentation is complete and accurate\r\n- [x] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n", "number": 211, "repository": "MetOffice/lfric_core", "title": "Reformat pull request template", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/211"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjc3Vk", "labels": ["cla-modified"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["andrewcoughtrie", "andrewcoughtrie", "andrewcoughtrie"], "status": "In Progress", "title": "Reformat pull request template"}, {"assignees": ["yaswant"], "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: NA\r\nCode Reviewer: @james-bruten-mo \r\n\r\nThe PR body was adding literal line breaks as specified in the template, which was not ideal. I have removed the 80-character markdown formatting restriction from the template to improve how it displays on GitHub PRs.\r\n\r\nAs in MetOffice/lfric_core#211\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines [style guidelines] (https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid undertanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n**NA**\r\n- [ ] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have tests been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n**NA**\r\n- [ ] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n**NA**\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 109, "repository": "MetOffice/lfric_apps", "title": "Reformat pull request template", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/109"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjdFRk", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["james-bruten-mo"], "status": "Done", "title": "Reformat pull request template"}, {"code Review": "james-bruten-mo", "content": {"body": "Adding a link to the github support for reattaching forks and adding more detail on the process. \r\n\r\nhttps://wwwspice/~jennifer.hickson/simulation_systems/add_support_link/html/git_faq.html\r\n", "number": 550, "repository": "MetOffice/simulation-systems", "title": "Rework support request section", "type": "PullRequest", "url": "https://github.com/MetOffice/simulation-systems/pull/550"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjh2xU", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/simulation-systems", "reviewers": ["james-bruten-mo"], "status": "Done", "title": "Rework support request section"}, {"assignees": ["EdHone"], "code Review": "MatthewHambley", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @svadams \r\nCode Reviewer: @MatthewHambley \r\n\r\n\r\n\r\n\r\n\r\nAt the time of the vn3.0 release a fix was committed (MetOffice/lfric_core#170) which fixed an issue with file I/O frequencies being set to every timestep by default. The fix, however, does not set the frequency within LFRic for these files which could result in unexpected behaviour down the line. More details on the issue can be found in #171.\r\nThis change adds some code which can fetch the frequency of the file from the iodef.xml where possible. The code will:\r\n1. look for a frequency definition within the LFRic fortran code\r\n2. if there is none, it will take the frequency from the iodef.xml.\r\n3. If there is no frequency definition in the iodef.xml the model will fail in an XIOS call.\r\n\r\nThere are also some new tests which exercise the behaviour where the frequency is not set within the model. There are also a few QoL improvements to the `.gitignore` and some general updates to the testing framework to enable the new tests.\r\n\r\n\r\n- closes MetOffice/lfric_core#171\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite\r\n using this branch\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (e.g. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (e.g. system\r\n tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource\r\n and have been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n# Test Suite Results - lfric_core - lfric_core-171-iodef-files/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | lfric_core-171-iodef-files/run1 |\r\n| Suite User | edward.hone |\r\n| Workflow Start | 2026-01-12T11:35:07 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| lfric_core | [EdHone/lfric_core@171-iodef-files](https://github.com/EdHone/lfric_core/tree/171-iodef-files) | False |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n
\r\n:white_check_mark: succeeded tasks - 372\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| build_coupled_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_coupled_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_coupled_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_coupled_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_coupling_unit_tests_azspice_gnu_32bit | succeeded |\r\n| build_coupling_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_coupling_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| build_coupling_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_driver_unit_tests_azspice_gnu_32bit | succeeded |\r\n| build_driver_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_driver_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| build_driver_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_infrastructure_integration_tests_azspice_gnu_32bit | succeeded |\r\n| build_infrastructure_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_infrastructure_integration_tests_ex1a_cce_32bit | succeeded |\r\n| build_infrastructure_integration_tests_ex1a_cce_64bit | succeeded |\r\n| build_infrastructure_unit_tests_azspice_gnu_32bit | succeeded |\r\n| build_infrastructure_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_infrastructure_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| build_infrastructure_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_io_demo_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_io_demo_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_io_demo_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_io_demo_ex1a_cce_fast-debug-32bit | succeeded |\r\n| build_io_demo_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_io_demo_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_io_demo_ex1a_gnu_fast-debug-32bit | succeeded |\r\n| build_io_demo_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_io_demo_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_io_demo_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_lbc_demo_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lbc_demo_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lbc_demo_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lbc_demo_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric_xios_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_lfric_xios_integration_tests_ex1a_cce_64bit | succeeded |\r\n| build_lfric_xios_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_lfric_xios_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_mesh_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_tools_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_tools_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_mesh_tools_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_mesh_tools_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_mesh_tools_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_tools_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_mesh_tools_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_science_unit_tests_azspice_gnu_32bit | succeeded |\r\n| build_science_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_science_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| build_science_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_simple_diffusion_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_simple_diffusion_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_simple_diffusion_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_simple_diffusion_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_simple_diffusion_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_simple_diffusion_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_simple_diffusion_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_skeleton_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_skeleton_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_skeleton_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_skeleton_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_skeleton_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_skeleton_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_skeleton_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| check_coupled_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_coupled_default-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_coupled_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_coupled_default-C12_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_io_demo_default-C24_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_io_demo_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_io_demo_default-C24_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_io_demo_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_io_demo_multifile-C24_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_io_demo_multifile-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_io_demo_multifile-C24_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_io_demo_multifile-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_io_demo_multifile-C24_ex1a_gnu_fast-debug-32bit | succeeded |\r\n| check_io_demo_multifile-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_ConstantLBC-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_ConstantLBC-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_lbc_demo_ConstantLBC-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_ConstantLBC-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_1x1P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_1x1P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_2x2P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_2x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_8x2P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_8x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_lbc_demo_default-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_default-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_lbc_demo_default-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_default-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c1_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c2_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c2_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c3_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c3_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c3_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-maps_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-maps_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-maps_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op-nonuniform_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op-nonuniform_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op-nonuniform_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-rotated_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-rotated_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-rotated_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_equator-band_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_equator-band_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_equator-band_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_equator_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_equator_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_equator_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_mesh_tools_falklands_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_falklands_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_falklands_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_london-model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_london-model_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_london-model_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_nzlam4_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_nzlam4_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_nzlam4_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-bi-periodic_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-bi-periodic_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-bi-periodic_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-maps_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-maps_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-maps_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-non-periodic_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-non-periodic_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-non-periodic_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-op-lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-op-lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-op-lam_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-centres_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-centres_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-centres_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-nodes_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-nodes_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-nodes_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-points_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-points_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-points_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-x_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-x_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-x_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-y_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-y_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-y_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_polar_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_polar_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_polar_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_uk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_uk_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_uk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_var-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_var-seuk_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_var-seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_simple_diffusion_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_simple_diffusion_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_simple_diffusion_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| check_skeleton_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_skeleton_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_skeleton_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| config_dump_checker | succeeded |\r\n| export-source | succeeded |\r\n| export-source_azspice | succeeded |\r\n| export-source_ex1a | succeeded |\r\n| global_variables_checker | succeeded |\r\n| housekeep_azspice | succeeded |\r\n| housekeep_ex1a | succeeded |\r\n| python_unit_tests | succeeded |\r\n| remote-init_azspice | succeeded |\r\n| remote-init_ex1a | succeeded |\r\n| rose-stem_lint_checker | succeeded |\r\n| run_coupled_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_coupled_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_coupled_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_coupled_default-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_coupled_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_coupled_default-C12_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_coupling_unit_tests_azspice_gnu_32bit | succeeded |\r\n| run_coupling_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_coupling_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| run_coupling_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_driver_unit_tests_azspice_gnu_32bit | succeeded |\r\n| run_driver_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_driver_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| run_driver_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_infrastructure_integration_tests_azspice_gnu_32bit | succeeded |\r\n| run_infrastructure_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_infrastructure_integration_tests_ex1a_cce_32bit | succeeded |\r\n| run_infrastructure_integration_tests_ex1a_cce_64bit | succeeded |\r\n| run_infrastructure_unit_tests_azspice_gnu_32bit | succeeded |\r\n| run_infrastructure_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_infrastructure_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| run_infrastructure_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_io_demo_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_io_demo_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_io_demo_default-C24_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_io_demo_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_io_demo_default-C24_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_io_demo_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_io_demo_multifile-C24_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_io_demo_multifile-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_io_demo_multifile-C24_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_io_demo_multifile-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_io_demo_multifile-C24_ex1a_gnu_fast-debug-32bit | succeeded |\r\n| run_io_demo_multifile-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_io_demo_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_io_demo_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_lbc_demo_ConstantLBC-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_ConstantLBC-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lbc_demo_ConstantLBC-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_ConstantLBC-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_IntegerFields-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_IntegerFields-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lbc_demo_IntegerFields-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_IntegerFields-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_1x1P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_1x1P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_2x2P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_2x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_8x2P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_8x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lbc_demo_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_default-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_default-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lbc_demo_default-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_default-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric_xios_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_lfric_xios_integration_tests_ex1a_cce_64bit | succeeded |\r\n| run_lfric_xios_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_lfric_xios_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_mesh_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_1x1P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_2x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_8x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_canned_cubedsphere_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_canned_planar_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c1_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c2_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c2_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c3_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c3_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c3_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-maps_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-maps_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-maps_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op-nonuniform_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op-nonuniform_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op-nonuniform_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-rotated_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-rotated_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-rotated_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_equator-band_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_equator-band_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_equator-band_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_equator_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_equator_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_equator_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_mesh_tools_falklands_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_falklands_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_falklands_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_london-model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_london-model_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_london-model_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_nzlam4_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_nzlam4_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_nzlam4_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-bi-periodic_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-bi-periodic_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-bi-periodic_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-maps_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-maps_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-maps_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-non-periodic_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-non-periodic_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-non-periodic_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-op-lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-op-lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-op-lam_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-centres_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-centres_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-centres_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-nodes_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-nodes_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-nodes_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-points_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-points_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-points_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-x_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-x_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-x_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-y_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-y_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-y_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_polar_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_polar_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_polar_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_uk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_uk_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_uk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_mesh_tools_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_mesh_tools_var-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_var-seuk_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_var-seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_science_unit_tests_azspice_gnu_32bit | succeeded |\r\n| run_science_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_science_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| run_science_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_simple_diffusion_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_simple_diffusion_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_simple_diffusion_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_simple_diffusion_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_simple_diffusion_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_simple_diffusion_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_simple_diffusion_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_skeleton_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_skeleton_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_skeleton_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_skeleton_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_skeleton_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_skeleton_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_skeleton_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| site_validator | succeeded |\r\n| style_checker | succeeded |\r\n| validate_rose_meta | succeeded |\r\n
\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel\r\n interface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 212, "repository": "MetOffice/lfric_core", "title": "Take XIOS file frequency configuration from iodef.xml where possible", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/212"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjh81A", "labels": ["cla-modified"], "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["svadams", "MatthewHambley", "stevemullerworth", "mike-hobson", "andrewcoughtrie", "mo-rickywong", "yaswant"], "sciTech Review": "svadams", "status": "Code Review", "title": "Take XIOS file frequency configuration from iodef.xml where possible"}, {"code Review": "james-bruten-mo", "content": {"body": "# Description\r\n\r\n## Summary\r\n\r\nSwitching out the hardcoded optimisation reviewers for the SimSysCodeReviewers team. Adding deduplication to the table construction as the new team will contain duplicates. Hardcoded removal of MGEX82 from team members as this is a SAM member rather than a reviewer. \r\n\r\nAlso moved test files into a directory to make it clearer what they are. \r\n\r\n## Changes\r\n\r\n_List the major changes made in this pull request._\r\n\r\n## Dependency\r\n\r\n_List dependent changes. Can use build-group logic here._\r\n\r\n## Impact\r\n\r\n_Discuss any potential impacts this feature may have on existing functionalities._\r\n\r\n## Issues addressed\r\n\r\nResolves\r\n\r\n_List issue(s) related to this PR._\r\n\r\n## Coordinated merge\r\n\r\n_Specify any coordinated merges here._\r\n\r\n\r\n## Checklist\r\n\r\n- [x] I have performed a self-review of my own changes\r\n", "number": 159, "repository": "MetOffice/SimSys_Scripts", "title": "Remove hardcoded review team", "type": "PullRequest", "url": "https://github.com/MetOffice/SimSys_Scripts/pull/159"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjh9IU", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/SimSys_Scripts", "reviewers": ["james-bruten-mo"], "status": "Done", "title": "Remove hardcoded review team"}, {"assignees": ["james-bruten-mo"], "code Review": "jennyhickson", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @jennyhickson \r\n\r\n\r\n\r\nAdd project tracking workflow\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid understanding and enhance the readability of the code\r\n- [ ] My changes generate no new warnings\r\n- [ ] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 117, "repository": "MetOffice/lfric_apps", "title": "Add project workflow", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/117"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjild0", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["jennyhickson"], "status": "Done", "title": "Add project workflow"}, {"assignees": ["james-bruten-mo"], "code Review": "jennyhickson", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @jennyhickson \r\n\r\n\r\n\r\nAdd project tracking workflow - waiting on growss PR before merging\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid understanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite\r\n using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel\r\n interface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [x] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [x] Documentation is complete and accurate\r\n- [x] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n", "number": 214, "repository": "MetOffice/lfric_core", "title": "add project workflow", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/214"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjingc", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["jennyhickson", "andrewcoughtrie", "yaswant"], "status": "Done", "title": "add project workflow"}, {"assignees": ["yaswant"], "code Review": "@james-bruten-mo", "content": {"body": "# Description\r\n\r\n## Summary\r\n\r\nBump superlinter\r\n\r\n## Changes\r\n\r\n- Upgrade SuperLinter action to v8.3.2 \r\n- Update Python environment matrix\r\n- Prefer ruff over Black\r\n\r\n## Dependency\r\n\r\n_List dependent changes. Can use build-group logic here._\r\n\r\n## Impact\r\n\r\n_Discuss any potential impacts this feature may have on existing functionalities._\r\n\r\n## Checklist\r\n\r\n- [x] I have performed a self-review of my own changes\r\n", "number": 161, "repository": "MetOffice/SimSys_Scripts", "title": "update superlinter", "type": "PullRequest", "url": "https://github.com/MetOffice/SimSys_Scripts/pull/161"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjj2vY", "labels": ["CI"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/SimSys_Scripts", "reviewers": ["james-bruten-mo", "james-bruten-mo"], "status": "Done", "title": "update superlinter"}, {"assignees": ["t00sa"], "code Review": "Pierre-siddall", "content": {"body": "The command line argument list passed to argparse is incorrect and can give rise to spurious errors in some cases. This corrects the problem by removing the first element (the command name itself) from the list of arguments passed to argparse.\r\n\r\nThis resolves issue #536", "number": 537, "repository": "MetOffice/fab", "title": "Fix a trivial CUI argument handling bug", "type": "PullRequest", "url": "https://github.com/MetOffice/fab/pull/537"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjlJJk", "repository": "https://github.com/MetOffice/fab", "reviewers": ["Pierre-siddall"], "status": "Done", "title": "Fix a trivial CUI argument handling bug"}, {"content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: \r\n\r\n\r\nThis change will consolidate all the nudging code improvements into a UM14.0 branch.\r\nIt will also update the GCOM version used by the UM to GCOM8.5\r\n\r\n\r\n\r\n\r\n\r\n\r\nfixes #20 \r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's style guidelines\r\n- [ ] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the UM rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 22, "repository": "MetOffice/um", "title": "Gm consolidate nudging", "type": "PullRequest", "url": "https://github.com/MetOffice/um/pull/22"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjlVRc", "repository": "https://github.com/MetOffice/um", "status": "SciTech Review", "title": "Gm consolidate nudging"}, {"assignees": ["james-bruten-mo"], "code Review": "ericaneininger", "content": {"body": "# Description\r\n\r\nWe've had a request to bump the timeout in this script\r\n", "number": 162, "repository": "MetOffice/SimSys_Scripts", "title": "bump timeout", "type": "PullRequest", "url": "https://github.com/MetOffice/SimSys_Scripts/pull/162"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjmHNM", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/SimSys_Scripts", "reviewers": ["ericaneininger"], "status": "Done", "title": "bump timeout"}, {"assignees": ["bblay-mo"], "content": {"body": "# PR Summary\r\nAdd Section 20 diagnostic _snow probability_, as described in https://github.com/MetOffice/Section20/issues/21.1\r\n\r\nTodo:\r\n - [ ] **Wait for Paul to make suites work with lfric apps vn3.0/GitHub**\r\n - [ ] Do we need the DOF loop?\r\n - [ ] Is the long name correct? What about a unit?\r\n - [ ] Rebase once #98, from which this was branched, has been merged.\r\n - Until then, this PR will also show the changes from #98.\r\n - We can see just the changes _ontop_ here (needs fork invite): https://github.com/bblay-mo/lfric_apps/compare/diags_geopot_thickness...bblay-mo:lfric_apps:diags_snow_prob?expand=1\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid understanding and enhance the readability of the code\r\n- [ ] My changes generate no new warnings\r\n- [ ] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 120, "repository": "MetOffice/lfric_apps", "title": "S20 Diags: snow prob", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/120"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjmOns", "labels": ["cla-signed"], "repository": "https://github.com/MetOffice/lfric_apps", "status": "In Progress", "title": "S20 Diags: snow prob"}, {"assignees": ["jennyhickson"], "code Review": "yaswant", "content": {"body": "Update the test file for workload.py with the latest project data as this contains a fuller set of reviews. \r\n\r\nAlso remove the body from each PR in the test data as this isn't needed, adds bloat and also can contain non-ascii characters which upsets the linter. ", "number": 163, "repository": "MetOffice/SimSys_Scripts", "title": "new test file", "type": "PullRequest", "url": "https://github.com/MetOffice/SimSys_Scripts/pull/163"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjm_lw", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/SimSys_Scripts", "reviewers": ["yaswant"], "status": "Done", "title": "new test file"}, {"assignees": ["james-bruten-mo"], "code Review": "jennyhickson", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @t00sa \r\nCode Reviewer: @jennyhickson \r\n\r\n\r\n\r\nDue to subtle rose reasons, the extract_source app doesn't show as failed if there was an error in the python script. This fixes this such that it does error correctly.\r\n\r\nWe're doing this as a hotfix to stable as it seems quite a few people are experiencing it.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\nI've tested that the task shows an error as expected if there was an error in the python script. I've not bothered running the rest of the test suite\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 122, "repository": "MetOffice/lfric_apps", "title": "raise error successfully from extract_source", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/122"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjpNyM", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["t00sa", "jennyhickson"], "sciTech Review": "t00sa", "status": "Done", "title": "raise error successfully from extract_source"}, {"assignees": ["tom-j-h"], "code Review": "TeranIvy", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @DrTVockerodtMO\r\nCode Reviewer: @TeranIvy \r\n\r\nAlign default configuration of `adjoint_tests` to that of `linear_model` (nwp-gal9). This includes both the canned test and the rose-stem tests.\r\n\r\n`linear_model` uses multigrid preconditioning in the solver, and taking advantage of this in the adjoint requires a minor code change in `science/adjoint/source/algorithm/solver/adj_semi_implicit_solver_alg_mod.x90`, and to test this, minor code changes in some of the test algorithms in `applications/adjoint_tests/source/algorithm/solver/`\r\n\r\n`linear_model` also reads linearisation states from file, whereas `adjoint_tests` currently sets them up analytically. Moving to reading from file requires some minor changes e.g., to iodef files, but also allows the removal of a lot of the analytical linearisation state setup code in some of the test algorithms.\r\n\r\nIn order to keep the alignment of `adjoint_tests` with `linear_model` simple, any necessary deviations are handled by optional configurations, so that the base configurations (`rose-app.conf` files) always remain identical.\r\n\r\nThis work has highlighted a minor bug which can also be dealt with by way of an optional configuration. I have opened #87 for this. Once it is dealt with the optional configuration will simply need to be removed.\r\n\r\nFor now, adding C224 tests to `adjoint_tests`, to match those in `linear_model`, is not being done, due to ongoing issues with running `adjoint_tests` in parallel (see https://code.metoffice.gov.uk/trac/lfric_apps/ticket/800).\r\n\r\n~~Finally, the code/patch changes from #71 (`science/adjoint/source/kernel/transport/mol/atl_poly1d_vert_w3_reconstruction_kernel_mod.F90` and `science/adjoint/patches/kernel/atl_poly1d_vert_adv_kernel_mod.patch`) are required for one of the configuration changes, _so they've been duplicated here but need not be reviewed again._ This makes #71 a blocker.~~ _Done!_\r\n\r\nAlso please note I branched from `main` rather than `stable` by mistake - apologies for this. I can make a new branch/PR if desired.\r\n\r\n- closes #84\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid understanding and enhance the readability of the code\r\n- [ ] My changes generate no new warnings\r\n- [ ] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n### trac.log\r\n\r\nVery long - see `~tom.hill/cylc-run/align_adjoint_tests_to_linear_model-developer-postSR1/trac.log`.\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n# Code Review\r\n\r\n- [x] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [x] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 123, "repository": "MetOffice/lfric_apps", "title": "Align `adjoint_tests` to `linear_model`", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/123"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjpdoY", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["DrTVockerodtMO", "DrTVockerodtMO", "TeranIvy", "TeranIvy", "TeranIvy"], "sciTech Review": "DrTVockerodtMO", "status": "Done", "title": "Align `adjoint_tests` to `linear_model`"}, {"content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @james-bruten-mo \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid understanding and enhance the readability of the code\r\n- [ ] My changes generate no new warnings\r\n- [ ] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 131, "repository": "MetOffice/lfric_apps", "title": "Hotfix to rose-stem suite", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/131"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjprHs", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["james-bruten-mo"], "status": "Done", "title": "Hotfix to rose-stem suite"}, {"assignees": ["tom-j-h"], "code Review": "stevemullerworth", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @mo-joshuacolclough \r\nCode Reviewer: @stevemullerworth \r\n\r\n**PLEASE NOTE** - this is a follow-on to #123. The branch was created from #123's branch in my fork, but I can't make a PR into that branch because then I would be stuck in my fork. So, to look at the actual changes relevant to this PR alone, look at the diff of this branch with #123's branch: https://github.com/tom-j-h/lfric_apps/compare/align_adjoint_tests_to_linear_model...tom-j-h:lfric_apps:jelf_adjoint_test_tolerance_nml\r\n\r\nAllows different test strictness when running different optional configurations. Necessary for follow-on PRs.\r\n\r\n- is blocked-by #123\r\n- blocks #156\r\n- closes #124\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [ ] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n`~tom.hill/cylc-run/jelf_adjoint_test_tolerance_nml-developer-3/run1/trac.log`\r\n\r\nNo failures (had to rerun some unrelated tasks, mostly build tasks, due to timeouts).\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 132, "repository": "MetOffice/lfric_apps", "title": "jelf adjoint test tolerance namelist variable", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/132"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjpu_0", "labels": ["macro", "cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["mo-joshuacolclough", "stevemullerworth"], "sciTech Review": "mo-joshuacolclough", "status": "Code Review", "title": "jelf adjoint test tolerance namelist variable"}, {"assignees": ["mcdalvi"], "code Review": "oakleybrunt", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @alanjhewitt \r\nCode Reviewer: @oakleybrunt \r\n\r\n\r\n\r\n\r\nArrays `true_latitude`, `true_longitude` and `weight_volc_vertdist` are being used without being allocated in LFRic copy of _ukca_volcanic_so2_ routine. This might have been a fallout of migrating the UM physics code.\r\nThis is causing CCE builds on ARCHER2 to fail, and warnings during the GNU compilation. \r\n\r\n_Note: the Volcanic_SO2 emission functionality is not yet fully linked up in LFRic_. Hence this PR will also add a check to ensure that the routine is not called.\r\n\r\n\r\nIssue: #81\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [ ] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n## Test Suite Results - lfric_apps - fix_i81_ukca_volc/run2\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [fix_i81_ukca_volc/run2](https://cylchub/services/cylc-review/cycles/mohit.dalvi/?suite=fix_i81_ukca_volc%2Frun2) |\r\n| Suite User | mohit.dalvi |\r\n| Workflow Start | 2026-01-19T09:59:37 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [mcdalvi/lfric_apps@fix_i81_ukca_volc](https://github.com/mcdalvi/lfric_apps/tree/fix_i81_ukca_volc) | False |\r\n| lfric_core | [MetOffice/lfric_core@5d4d72f](https://github.com/MetOffice/lfric_core/tree/5d4d72f) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 1106\r\n\r\n## Testing information from ARCHER2 is noted in the [issue:81 Summary](https://github.com/MetOffice/lfric_apps/issues/81#issue-3772407223)\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [x] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [x] Documentation is complete and accurate\r\n- [x] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n", "number": 133, "repository": "MetOffice/lfric_apps", "title": "#81: Fix unallocated arrays in `ukca_volcanic_so2`", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/133"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjpvvY", "labels": ["bug", "cla-signed"], "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["oakleybrunt"], "sciTech Review": "alanjhewitt", "status": "Approved", "title": "#81: Fix unallocated arrays in `ukca_volcanic_so2`"}, {"assignees": ["mo-lucy-gordon"], "code Review": "Pierre-siddall", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @james-bruten-mo \r\nCode Reviewer: @Pierre-siddall \r\n\r\nThis adds the fortitude linter to the test suite and enables one rule to run to demonstrate basic functionality. Subsequent branches will add more rules and testing. \r\n\r\nAssociated with https://github.com/MetOffice/lfric_apps/pull/150 \r\n\r\nThis addition will mean Fortitude will run when the \"scripts\", \"developer\", \"all\" or \"fortitude_linter\" group itself is run with the Cylc test suite.\r\n\r\nThe rule added here can be referenced Fortitude documentation website here: https://fortitude.readthedocs.io/en/stable/rules/use-all/\r\n\r\n**For reference, these are some example outputs and errors from when fortitude runs:**\r\n\r\n- **No errors, run with group=fortitude_linter**\r\nhttps://cylchub/services/cylc-review/cycles/lucy.gordon?&suite=lcore_add_gh_no_errors2%2Frun3\r\n**...and with scripts:**\r\nhttps://cylchub/services/cylc-review/taskjobs/lucy.gordon?&suite=lcore_add_gh_no_errors2%2Frun8&cycles=1&task_status=expired&task_status=succeeded\r\n\r\n- **Lint errors in one repo, run with group=fortitude_linter:**\r\nhttps://cylchub/services/cylc-review/view/lucy.gordon?&suite=lcore_add_gh_no_errors2%2Frun5&no_fuzzy_time=0&path=log/job/1/fortitude_linter/01/job.err\r\n\r\n- **Non-lint errors in most repos, and no errors in one repo, run with group=fortitude_linter:**\r\nhttps://cylchub/services/cylc-review/view/lucy.gordon?&suite=lcore_add_gh_no_errors2%2Frun6&no_fuzzy_time=0&path=log/job/1/fortitude_linter/01/job.err\r\nhttps://cylchub/services/cylc-review/view/lucy.gordon?&suite=lcore_add_gh_no_errors2%2Frun6&no_fuzzy_time=0&path=log/job/1/fortitude_linter/01/job.out\r\n\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite\r\n using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (e.g. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (e.g. system\r\n tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource\r\n and have been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n# Test Suite Results - lfric_core - lcore_add_gh_no_errors2/run7\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | lcore_add_gh_no_errors2/run7 |\r\n| Suite User | lucy.gordon |\r\n| Workflow Start | 2026-01-14T11:46:12 |\r\n| Groups Run | all |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| lfric_core | [mo-lucy-gordon/lfric_core@adding_fortitude](https://github.com/mo-lucy-gordon/lfric_core/tree/adding_fortitude) | False |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n
\r\n:white_check_mark: succeeded tasks - 373\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel\r\n interface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 217, "repository": "MetOffice/lfric_core", "title": "Adding fortitude", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/217"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjqGao", "labels": ["cla-signed"], "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["mo-rickywong", "james-bruten-mo"], "sciTech Review": "james-bruten-mo", "status": "Changes Requested", "title": "Adding fortitude"}, {"assignees": ["james-bruten-mo"], "content": {"body": "Minor changes to review pages:\r\n\r\n* add instructions on hotfix process\r\n* add option of `gh pr checkout` to how to commit", "number": 555, "repository": "MetOffice/simulation-systems", "title": "hotfix release notes", "type": "PullRequest", "url": "https://github.com/MetOffice/simulation-systems/pull/555"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjqllE", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/simulation-systems", "reviewers": ["jennyhickson"], "status": "Done", "title": "hotfix release notes"}, {"assignees": ["mo-marqh"], "code Review": "mo-lottieturner", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @mo-marqh\r\nCode Reviewer: @mo-lottieturner \r\n\r\n\r\n\r\n\r\n- MetOffice/lfric_core#215\r\n\r\nThis PR fixes a few issues in our code that are fine with XIOS2 but fail with XIOS3, namely:\r\n- incorrect formatting of the `buffer_size_factor` config parameter\r\n- fields in `read` mode files which do not have `read_access=.true.`\r\n\r\nThis PR fixes them and the fixes are backwards compatible with XIOS 2.\r\nWith the additional changes from #204, the lfric-xios technical tests are able to be run with both XIOS2 and XIOS3.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite\r\n using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (e.g. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (e.g. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n# Test Suite Results - lfric_core - lfric_core-215-xios3-fixes/run2\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [lfric_core-215-xios3-fixes/run2](https://cylchub/services/cylc-review/cycles/edward.hone/?suite=lfric_core-215-xios3-fixes%2Frun2) |\r\n| Suite User | edward.hone |\r\n| Workflow Start | 2026-01-20T11:49:52 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| lfric_core | [EdHone/lfric_core@215-xios3-fixes](https://github.com/EdHone/lfric_core/tree/215-xios3-fixes) | False |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 372\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel\r\n interface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [x] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [x] Documentation is complete and accurate\r\n- [x] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n", "number": 218, "repository": "MetOffice/lfric_core", "title": "Small fixes to better enable running with XIOS 3", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/218"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjqqfo", "labels": ["cla-modified"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["mo-marqh", "mo-lottieturner", "MatthewHambley", "stevemullerworth", "mike-hobson", "andrewcoughtrie", "mo-rickywong", "yaswant"], "sciTech Review": "mo-marqh", "status": "Done", "title": "Small fixes to better enable running with XIOS 3"}, {"assignees": ["mo-andymalcolm"], "code Review": "r-sharp", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @mo-saracusworth \r\nCode Reviewer: @r-sharp \r\n\r\n\r\n\r\n\r\nThis change includes OMP optimisations required by the climate diagnostics being used for CMIP.\r\nAs OMP changes no code owner approval needed for changes. Just HPC opt via Sara.\r\n\r\n\r\n- linked MetOffice/um#23\r\n\r\n\r\ncloses #23\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [y] I have performed a self-review of my own code\r\n- [y] My code follows the project's style guidelines\r\n- [y] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [y] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [y] I have tested this change locally, using the UM rose-stem suite\r\n- [n/a] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [n/a] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\nchanges tested in workflow u-dv620. large improvement in runtimes seen.\r\n\r\n### trac.log\r\n\r\n\r\n\r\n# Test Suite Results - um - climate_diagnostics/run3\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [climate_diagnostics/run3](https://cylchub/services/cylc-review/cycles/andy.malcolm/?suite=climate_diagnostics%2Frun3) |\r\n| Suite User | andy.malcolm |\r\n| Workflow Start | 2026-01-16T10:58:52 |\r\n| Groups Run | developer', 'rigorous_compile |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| mule | [MetOffice/mule@2025.10.1](https://github.com/MetOffice/mule/tree/2025.10.1) | True |\r\n| shumlib | [MetOffice/shumlib@2025.10.1](https://github.com/MetOffice/shumlib/tree/2025.10.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n| um | [mo-andymalcolm/um@climate_diags_opt_omp](https://github.com/mo-andymalcolm/um/tree/climate_diags_opt_omp) | False |\r\n| um_aux | [MetOffice/um_aux@2025.12.1](https://github.com/MetOffice/um_aux/tree/2025.12.1) | True |\r\n| um_meta | [MetOffice/um_meta@2025.12.1](https://github.com/MetOffice/um_meta/tree/2025.12.1) | True |\r\n\r\n## Approvals\r\n### Code Owners\r\n| Section | Owner | Deputy | State |\r\n| :--- | :--- | :--- | :--- |\r\n| climate_diagnostics | umsysteam@metoffice.gov.uk | -- | Pending |\r\n| tracer_advection | mohamedzerroukat | thomasallen | Pending |\r\n### Config Owners\r\nNo UM Config Owners Required\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 886\r\n\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | climate_diagnostics/run1 |\r\n| Suite User | andy.malcolm |\r\n| Workflow Start | 2026-01-14T16:03:49 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| mule | [MetOffice/mule@2025.10.1](https://github.com/MetOffice/mule/tree/2025.10.1) | True |\r\n| shumlib | [MetOffice/shumlib@2025.10.1](https://github.com/MetOffice/shumlib/tree/2025.10.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n| um | [mo-andymalcolm/um@climate_diags_opt_omp](https://github.com/mo-andymalcolm/um/tree/climate_diags_opt_omp) | False |\r\n| um_aux | [MetOffice/um_aux@2025.12.1](https://github.com/MetOffice/um_aux/tree/2025.12.1) | True |\r\n| um_meta | [MetOffice/um_meta@2025.12.1](https://github.com/MetOffice/um_meta/tree/2025.12.1) | True |\r\n\r\n## Approvals\r\n### Code Owners\r\n| Section | Owner | Deputy | State |\r\n| :--- | :--- | :--- | :--- |\r\n| climate_diagnostics | umsysteam@metoffice.gov.uk | -- | Pending |\r\n| tracer_advection | mohamedzerroukat | thomasallen | Pending |\r\n### Config Owners\r\nNo UM Config Owners Required\r\n## Task Information\r\n
\r\n:white_check_mark: succeeded tasks - 880\r\n\r\n## Security Considerations\r\n\r\n- [y] I have reviewed my changes for potential security issues\r\n- [n/a] Sensitive data is properly handled (if applicable)\r\n- [n/a] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [y] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [n] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [n/a] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 24, "repository": "MetOffice/um", "title": "Climate diags opt omp", "type": "PullRequest", "url": "https://github.com/MetOffice/um/pull/24"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjqsQ8", "repository": "https://github.com/MetOffice/um", "status": "SciTech Review", "title": "Climate diags opt omp"}, {"assignees": ["mo-jmanners"], "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer:\r\nCode Reviewer: @james-bruten-mo \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\ncloses #9\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- Trivial change that does not affect UM or LFRic builds.\r\n\r\n- [ ] If shared files have been modified, I have run the UM and LFRic Apps rose\r\n stem suites\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n- make_tar script runs successfully\r\n- changes to userguide build with latex\r\n\r\n### trac.log\r\n\r\n\r\n- NA\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 12, "repository": "MetOffice/socrates", "title": "Tidy up references to FCM", "type": "PullRequest", "url": "https://github.com/MetOffice/socrates/pull/12"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjq2XY", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/socrates", "reviewers": ["james-bruten-mo"], "status": "Done", "title": "Tidy up references to FCM"}, {"assignees": ["yaswant"], "code Review": "@james-bruten-mo", "content": {"body": "# Description\n\n## Summary\n\nRefactor `run_command()` and add logging\n\n## Dependency\n\nNone\n## Checklist\n\n- [x] I have performed a self-review of my own changes\n", "number": 164, "repository": "MetOffice/SimSys_Scripts", "title": "Refactor run_command error handling", "type": "PullRequest", "url": "https://github.com/MetOffice/SimSys_Scripts/pull/164"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjq5SY", "labels": ["enhancement"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/SimSys_Scripts", "reviewers": ["james-bruten-mo"], "status": "Done", "title": "Refactor run_command error handling"}, {"assignees": ["james-bruten-mo"], "content": {"body": "# PR Summary\r\n\r\nSci Tech Reviewer: \r\nCode Reviewer: \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's style guidelines\r\n- [ ] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\n### trac.log and other testing evidence\r\n\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] This change does not introduce security vulnerabilities\r\n- [ ] I have reviewed the code for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## Contributor License Agreement (CLA)\r\n\r\n- [ ] **Required** - I confirm that I have read and agree to the project's\r\n [Contributor License Agreement](todo-enter-link-to-cla)\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](todo-enter-link-to-policy-page) (including\r\n attribution labels)\r\n\r\n## Documentation\r\n\r\nDocumentation includes a broad range of things, including but not limited to, \r\nuser guides, code comments, API documentation, and README.md.\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n# Sci-Tech Review\r\n\r\n\r\n\r\n- [ ] I understand the scientific or technical area of the code being modified\r\n- [ ] The code changes correspond to the PR description of the changes\r\n- [ ] Sufficient documentation has been included\r\n- [ ] Sufficient testing has been performed\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues are properly linked and addressed\r\n- [ ] CLA compliance is confirmed\r\n- [ ] Code quality standards are met\r\n- [ ] Tests are adequate and passing\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 114, "repository": "MetOffice/git_playground", "title": "Test cla from stable", "type": "PullRequest", "url": "https://github.com/MetOffice/git_playground/pull/114"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjtF5s", "labels": ["contributor"], "repository": "https://github.com/MetOffice/git_playground", "status": "In Progress", "title": "Test cla from stable"}, {"assignees": ["james-bruten-mo"], "content": {"body": "# PR Summary\r\n\r\nSci Tech Reviewer: \r\nCode Reviewer: \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's style guidelines\r\n- [ ] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\n### trac.log and other testing evidence\r\n\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] This change does not introduce security vulnerabilities\r\n- [ ] I have reviewed the code for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## Contributor License Agreement (CLA)\r\n\r\n- [ ] **Required** - I confirm that I have read and agree to the project's\r\n [Contributor License Agreement](todo-enter-link-to-cla)\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](todo-enter-link-to-policy-page) (including\r\n attribution labels)\r\n\r\n## Documentation\r\n\r\nDocumentation includes a broad range of things, including but not limited to, \r\nuser guides, code comments, API documentation, and README.md.\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n# Sci-Tech Review\r\n\r\n\r\n\r\n- [ ] I understand the scientific or technical area of the code being modified\r\n- [ ] The code changes correspond to the PR description of the changes\r\n- [ ] Sufficient documentation has been included\r\n- [ ] Sufficient testing has been performed\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues are properly linked and addressed\r\n- [ ] CLA compliance is confirmed\r\n- [ ] Code quality standards are met\r\n- [ ] Tests are adequate and passing\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 115, "repository": "MetOffice/git_playground", "title": "Test from main", "type": "PullRequest", "url": "https://github.com/MetOffice/git_playground/pull/115"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjtIAc", "labels": ["contributor", "cla-modified"], "repository": "https://github.com/MetOffice/git_playground", "status": "In Progress", "title": "Test from main"}, {"code Review": "mike-hobson", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @DanCopsey \r\nCode Reviewer: @mike-hobson \r\n\r\n\r\n\r\n\r\nThis pull request enables sea-ice ancillaries to be read on categories. This is required for surf ancillaries in coupled NWP where we require information about sea-ice at lake points that are not resolved by NEMO. The new functionality is only used for surf ancils at the moment. Adding it for other types of sea-ice ancils would just require a change to xml files but there is no requirement for this at the moment.\r\n\r\nTo enable the change, I have also had to make some changes to the logic of reading SST and sea-ice ancils. In particular, coupled climate model runs will now need the seaice_source variable set to \"start_dump\" instead of \"ancil\" as was used previously. This has no effect on results. I can't see a way to implement an upgrade macro for this change as the required value is different for coupled vs atmosphere only models. Given my team is likely to be the only one upgrading coupled workflows from vn3.0 to vn3.1 I think we will be able to deal with this manually.\r\n\r\nThe axes of one input file used by two tests have been updated as part of this change.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [ ] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\nThis has been tested in NWP case study workflows at multiple LFRic versions. It has also been tested in AMIP and coupled climate workflows to ensure that it doesn't change results.\r\nThe metadata validation task fails at the moment because I have edited metadata at HEAD but the coupled task still points to vn3.0 metadata. \r\n\r\n### trac.log\r\n# Test Suite Results - lfric_apps - git_ostia_ancils/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | git_ostia_ancils/run1 |\r\n| Suite User | tim.graham |\r\n| Workflow Start | 2026-01-14T12:08:07 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [timgraham-Met/lfric_apps@118_ostia_ice_ancils](https://github.com/timgraham-Met/lfric_apps/tree/118_ostia_ice_ancils) | False |\r\n| lfric_core | [MetOffice/lfric_core@5d4d72f](https://github.com/MetOffice/lfric_core/tree/5d4d72f) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n
\r\n:x: failed tasks - 1\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| validate_rose_meta | failed |\r\n
\r\n
\r\n:white_check_mark: succeeded tasks - 1104\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| build_adjoint_tests_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_azspice_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_ex1a_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_adjoint_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_coupled_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gravity_wave_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_gravity_wave_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_gravity_wave_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_gravity_wave_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_gravity_wave_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gungho_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_gungho_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| build_gungho_model_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_model_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| build_gungho_model_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_gungho_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_tests_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_tests_integration_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_jules_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric2lfric_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric2lfric_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_full-debug-32bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_production-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_fast-debug-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_full-debug-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_production-32bit | succeeded |\r\n| build_lfric_coupled_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_linear_model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_model_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_linear_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_mesh_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_name_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_ngarch_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_ngarch_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_ngarch_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_ngarch_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_physics_schemes_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_physics_schemes_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_shallow_water_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_shallow_water_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_shallow_water_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_shallow_water_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_solver_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_solver_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_solver_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_transport_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_transport_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_transport_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| check_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200_realorog-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200_realorog-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-nrun-v-crun | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-nrun-v-crun | succeeded |\r\n| check_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_runge-kutta-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_runge-kutta-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_semi-implicit-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_semi-implicit-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_nwp_gal9-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_nwp_gal9-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jules_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-seuk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_chem_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_chem_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9_debug-C12_azspice_gnu_full-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_debug-C12_ex1a_cce_full-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_noukca_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_noukca_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_zero-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_zero-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| config_dump_checker | succeeded |\r\n| export-source | succeeded |\r\n| export-source_azspice | succeeded |\r\n| export-source_ex1a | succeeded |\r\n| export-weights_azspice | succeeded |\r\n| export-weights_ex1a | succeeded |\r\n| fcm_make2_drivers | succeeded |\r\n| fcm_make2_lfric_coupled_ocean_ex1a_cce_fast-debug-64bit | succeeded |\r\n| fcm_make_drivers | succeeded |\r\n| fcm_make_lfric_coupled_ocean_ex1a_cce_fast-debug-64bit | succeeded |\r\n| fcm_make_lfric_coupled_river_ex1a_cce_fast-debug-64bit | succeeded |\r\n| generate_weights_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet_lbc_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-falklands_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_azspice_weightgen_script | succeeded |\r\n| global_variables_checker | succeeded |\r\n| housekeep_ex1a | succeeded |\r\n| local_build_test | succeeded |\r\n| macro_chains_checker | succeeded |\r\n| perftools-export_gungho_model_baroclinic-profile_perf-C24_MG_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| pert_compare_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| pert_compare_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_cylinder_xz-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_cylinder_xz-BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| python_unit_tests | succeeded |\r\n| remote-init_azspice | succeeded |\r\n| remote-init_ex1a | succeeded |\r\n| rose-stem_lint_checker | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_adjoint_tests_canned_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_canned_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_azspice_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_ex1a_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_varying_ls-C12_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_adjoint_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_coupled_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gravity_wave_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_gravity_wave_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gungho_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_gungho_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit_pert_off | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit_pert_off | succeeded |\r\n| run_gungho_model_baroclinic-profile_perf-C24_MG_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_gungho_model_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200_realorog-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200_realorog-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_no-timestep-method-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_no-timestep-method-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_runge-kutta-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_runge-kutta-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_semi-implicit-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_semi-implicit-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_gungho_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_tests_integration_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_nwp_gal9-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_nwp_gal9-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jules_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jules_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-seuk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric_atm_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_canned_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_chem_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_chem_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C12_azspice_gnu_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C12_ex1a_cce_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_linear_model_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_zero-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_zero-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_linear_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_mesh_BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP2x2-50000x50000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1500x1500_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_C16_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_rot_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_rot_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_falklands_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_falklands_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_seuk_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_seuk_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_cylinder_xz-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_cylinder_xz-BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_name_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_ngarch_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_physics_schemes_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_physics_schemes_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_shallow_water_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_shallow_water_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_transport_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| site_validator | succeeded |\r\n| style_checker | succeeded |\r\n| test_launch-exe | succeeded |\r\n
\r\n
\r\n:hourglass: waiting tasks - 1\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| housekeep_azspice | waiting |\r\n
\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 137, "repository": "MetOffice/lfric_apps", "title": "118 ostia ice ancils", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/137"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjtONI", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["DanCopsey"], "status": "SciTech Review", "title": "118 ostia ice ancils"}, {"assignees": ["thomasmelvin"], "code Review": "christophermaynard", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @tommbendall \r\nCode Reviewer: @christophermaynard \r\n\r\n\r\n\r\nThis is a port of the previous SRS ticket (https://code.metoffice.gov.uk/trac/lfric_apps/ticket/1070) & its linked ticket https://code.metoffice.gov.uk/trac/lfric/ticket/4699 Both these tickets have already been science and code reviewed on the SRS and will go to the same reviewers here to check for any further issues.\r\n\r\nIn detail, the aim of this ticket is to modify the existing partitioning strategy so that it can partition multiple panels (either 3 sets of 2 or 2 sets of 3) into uniform rectangular domains. This will mean that the number of mpi ranks needs to only have a factor of 2 or 3 instead of 6 as a base requirement.\r\n\r\nUsing this option means that code that assumes all owned cells are on the same panel (we think only the extended mesh in the transport code) will not give the correct results here.\r\n\r\nAs part of this change I have also fixed the plotting script for the baroclinic wave on azspice where the figures were not coming out correct\r\n\r\n\r\n- linked MetOffice/lfric_core#220\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [X] Comments have been included that aid understanding and enhance the readability of the code\r\n- [X] My changes generate no new warnings\r\n- [ ] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\nThis change has been well tested & used in the Dec2025 KPI report for the global lfric model and is required to run the model on the target ~100 nodes at C896 resolution\r\n\r\n### trac.log\r\n\r\n\r\n\r\n# Test Suite Results - lfric_apps - decompose_across_panels/run11\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [decompose_across_panels/run11](https://cylchub/services/cylc-review/cycles/thomas.melvin/?suite=decompose_across_panels%2Frun11) |\r\n| Suite User | thomas.melvin |\r\n| Workflow Start | 2026-01-19T15:59:16 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [thomasmelvin/lfric_apps@decompose_across_panels](https://github.com/thomasmelvin/lfric_apps/tree/decompose_across_panels) | False |\r\n| lfric_core | [thomasmelvin/lfric_core@decompose_across_panels](https://github.com/thomasmelvin/lfric_core/tree/decompose_across_panels) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 1115\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [X] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 138, "repository": "MetOffice/lfric_apps", "title": "Decompose across panels", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/138"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjtTzI", "labels": ["KGO", "cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["christophermaynard", "tommbendall"], "sciTech Review": "tommbendall", "status": "Code Review", "title": "Decompose across panels"}, {"assignees": ["thomasmelvin"], "code Review": "christophermaynard", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @tommbendall \r\nCode Reviewer: @christophermaynard \r\n\r\n\r\n\r\n\r\n\r\nThis is a port of the previous SRS ticket https://code.metoffice.gov.uk/trac/lfric/ticket/4699 & its related linked ticket https://code.metoffice.gov.uk/trac/lfric/ticket/4699 Both these tickets have already been science and code reviewed on the SRS and will go to the same reviewers here to check for any further issues.\r\n\r\nIn detail, the aim of this ticket is to modify the existing partitioning strategy so that it can partition multiple panels (either 3 sets of 2 or 2 sets of 3) into uniform rectangular domains. This will mean that the number of mpi ranks needs to only have a factor of 2 or 3 instead of 6 as a base requirement.\r\n\r\nUsing this option means that code that assumes all owned cells are on the same panel (we think only the extended mesh in the transport code) will not give the correct results here.\r\n\r\n- linked MetOffice/lfric_apps#138\r\n- fixes [(https://github.com/MetOffice/lfric_apps/issues/88)] \r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [X] I have performed a self-review of my own code\r\n- [X] My code follows the project's\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [X] Comments have been included that aid understanding and enhance the\r\n readability of the code\r\n- [X] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [X] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [X] If required (e.g. API changes) I have also run the LFRic Apps test suite\r\n using this branch\r\n- [X] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (e.g. kgo changes)\r\n- [X] I have added tests to cover new functionality as appropriate (e.g. system\r\n tests, unit tests, etc.)\r\n- [X] Any new tests have been assigned an appropriate amount of compute resource\r\n and have been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n# Test Suite Results - lfric_core - core_decompose_across_panels/run5\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [core_decompose_across_panels/run5](https://cylchub/services/cylc-review/cycles/thomas.melvin/?suite=core_decompose_across_panels%2Frun5) |\r\n| Suite User | thomas.melvin |\r\n| Workflow Start | 2026-01-19T13:54:16 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| lfric_core | [thomasmelvin/lfric_core@decompose_across_panels](https://github.com/thomasmelvin/lfric_core/tree/decompose_across_panels) | False |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 384\r\n\r\n## Security Considerations\r\n\r\n- [X] I have reviewed my changes for potential security issues\r\n- [] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [X] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [X] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel\r\n interface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 220, "repository": "MetOffice/lfric_core", "title": "Decompose across panels", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/220"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjtbTI", "labels": ["Linked Apps", "cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["mo-rickywong", "mike-hobson", "christophermaynard", "tommbendall"], "sciTech Review": "tommbendall", "status": "Code Review", "title": "Decompose across panels"}, {"assignees": ["caroduro"], "code Review": "Pierre-siddall", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @Pierre-siddall \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n- [x] Comments have been included that aid understanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n- [ ] If editing `rose-meta/jules-shared` then have you supplied a linked UM PR?\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the JULES rose-stem suite\r\n- [ ] If shared files have been modified, I have run the UM and LFRic Apps rose\r\n stem suites\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## Approvals\r\n\r\nPlease request all relevant approvals. See the CodeOwners.txt file for section\r\nowners.\r\n\r\n### Technical\r\n\r\n- [ ] JULES Code Owner\r\n- [ ] OpenMP\r\n- [ ] River Routing\r\n- [ ] Rose Stem\r\n- [ ] Rose Metadata\r\n- [ ] Upgrade Macros\r\n\r\n### Scientific\r\n\r\n- [ ] Surface\r\n- [ ] Hydrology\r\n- [ ] Vegetation\r\n- [ ] Veg3 RED Demography\r\n- [ ] Biogechemistry\r\n- [ ] Biogenic fluxes\r\n- [ ] Fire\r\n- [ ] Lakes\r\n- [ ] Evaluation\r\n- [ ] Imogen\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 29, "repository": "MetOffice/jules", "title": "Bug fix for a correct calculation of Newton-Raphson [issue 28]", "type": "PullRequest", "url": "https://github.com/MetOffice/jules/pull/29"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjtplI", "labels": ["cla-signed"], "repository": "https://github.com/MetOffice/jules", "reviewers": [], "status": "SciTech Review", "title": "Bug fix for a correct calculation of Newton-Raphson [issue 28]"}, {"assignees": ["thomasmelvin"], "code Review": "mo-lucy-gordon", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @jameskent-metoffice \r\nCode Reviewer: @mo-lucy-gordon \r\n\r\n\r\n\r\n\r\n\r\nThis change refactors the computation of the damping layer kernel to improve the efficiency of the code. As the computation order is reordered this results in small changes to kgos for all tests that use the damping layer.\r\n\r\nThe performance improvement is gained principally from lifting the expensive subroutine calls in the kernel outside of the dof loop (since they only depend upon the quadrature loop) and hence these functions are call much less often\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [X] I have performed a self-review of my own code\r\n- [X] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [X] Comments have been included that aid understanding and enhance the readability of the code\r\n- [X] My changes generate no new warnings\r\n- [X] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [X] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [X] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n# Test Suite Results - lfric_apps - refactor_dl_matrix/run3\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | refactor_dl_matrix/run3 |\r\n| Suite User | thomas.melvin |\r\n| Workflow Start | 2026-01-15T11:39:10 |\r\n| Groups Run | all |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [thomasmelvin/lfric_apps@refactor_dl_matrix](https://github.com/thomasmelvin/lfric_apps/tree/refactor_dl_matrix) | False |\r\n| lfric_core | [MetOffice/lfric_core@2025.12.1](https://github.com/MetOffice/lfric_core/tree/2025.12.1) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n
\r\n:x: failed tasks - 84\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| check_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | failed |\r\n| check_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | failed |\r\n| check_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | failed |\r\n| check_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | failed |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_azspice_gnu_fast-debug-64bit | failed |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_ex1a_cce_fast-debug-64bit | failed |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_op_azspice_gnu_fast-debug-64bit | failed |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_op_ex1a_cce_fast-debug-64bit | failed |\r\n| check_lfric_atm_aquaplanet-C12_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_aquaplanet-C12_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_camembert_case3_gj1214b-C12_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_camembert_case3_gj1214b-C12_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_clim_gal9_1T-C12_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_clim_gal9_1T-C48_MG_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_clim_gal9_2T-C12_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_clim_gal9_2T-C48_MG_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_clim_gal9_4T-C48_MG_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_clim_gal9_chem-C12_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_clim_gal9_chem-C12_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_clim_gal9_chem_1T-C12_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_clim_gal9_chem_2T-C12_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_comp_tran_ref_3d_l120-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_hd209458b-C24_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_hd209458b-C24_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_casim-C12_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_casim-C12_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_coma9-C12_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_coma9-C12_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_comorph_dev-C12_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_comorph_dev-C12_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_comorph_tb-C12_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | failed |\r\n| check_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | failed |\r\n| check_lfric_atm_nwp_gal9-C48_MG_azspice_gnu_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9-C48_MG_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9-pert-C12_azspice_gnu_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9-pert-C12_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_coarse_aero-C48_MG_azspice_gnu_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_coarse_aero-C48_MG_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_coarse_aero_threaded-C48_MG_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_coarse_aero_threaded-C48_MG_ex1a_gnu_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_da-C12_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_gal9_da-C12_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_gal9_debug-C12_azspice_gnu_full-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_debug-C12_ex1a_cce_full-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_debug-C48_MG_azspice_gnu_full-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_debug-C48_MG_ex1a_cce_full-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_eda-C12_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_gal9_eda-C12_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_gal9_eda_jada-C12_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_gal9_eda_jada-C12_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_gal9_mol-C12_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_gal9_mol-C12_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_gal9_noukca_1T-C12_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_noukca_1T-C48_MG_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_noukca_2T-C12_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_noukca_2T-C48_MG_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_noukca_2T-C48_MG_ex1a_cce_full-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_noukca_4T-C48_MG_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | failed |\r\n| check_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_thai_ben1-C48_MG_azspice_gnu_fast-debug-32bit | failed |\r\n| check_lfric_atm_thai_ben1-C48_MG_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | failed |\r\n
\r\n
\r\n:white_check_mark: succeeded tasks - 1371\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| build_adjoint_tests_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_azspice_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_ex1a_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_adjoint_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_coupled_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gravity_wave_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_gravity_wave_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_gravity_wave_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_gravity_wave_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_gravity_wave_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gungho_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_gungho_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| build_gungho_model_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_model_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| build_gungho_model_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_gungho_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_tests_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_tests_integration_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_jules_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric2lfric_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric2lfric_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_full-debug-32bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_production-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_fast-debug-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_full-debug-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_production-32bit | succeeded |\r\n| build_lfric_atm_ex1a_gnu_fast-debug-32bit | succeeded |\r\n| build_lfric_coupled_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_linear_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_linear_model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_model_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_linear_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_mesh_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_name_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_ngarch_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_ngarch_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_ngarch_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_ngarch_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_physics_schemes_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_physics_schemes_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_shallow_water_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_shallow_water_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_shallow_water_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_shallow_water_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_socrates_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_socrates_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_solver_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_solver_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_solver_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_transport_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_transport_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_transport_ex1a_cce_production-64bit | succeeded |\r\n| build_transport_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| check_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200_realorog-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200_realorog-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-nrun-v-crun | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-nrun-v-crun | succeeded |\r\n| check_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_runge-kutta-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_runge-kutta-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_semi-implicit-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_semi-implicit-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_nwp_gal9-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_nwp_gal9-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jules_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-seuk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-uk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-uk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-ukv_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-ukv_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_zero-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_zero-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| config_dump_checker | succeeded |\r\n| export-source | succeeded |\r\n| export-source_azspice | succeeded |\r\n| export-source_ex1a | succeeded |\r\n| export-weights_azspice | succeeded |\r\n| export-weights_ex1a | succeeded |\r\n| fcm_make2_drivers | succeeded |\r\n| fcm_make2_lfric_coupled_ocean_ex1a_cce_fast-debug-64bit | succeeded |\r\n| fcm_make_drivers | succeeded |\r\n| fcm_make_lfric_coupled_ocean_ex1a_cce_fast-debug-64bit | succeeded |\r\n| fcm_make_lfric_coupled_river_ex1a_cce_fast-debug-64bit | succeeded |\r\n| generate_weights_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet_lbc_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-falklands_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-var_seuk_lam_azspice_weightgen_script | succeeded |\r\n| global_variables_checker | succeeded |\r\n| kgo_groups_checker | succeeded |\r\n| local_build_test | succeeded |\r\n| macro_chains_checker | succeeded |\r\n| memory_plot_ex_lfric_atm_nwp_gal9-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| perftools-export_gungho_model_baroclinic-profile_perf-C24_MG_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| pert_compare_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| pert_compare_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| pert_compare_lfric_atm_nwp_gal9-pert-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| pert_compare_lfric_atm_nwp_gal9-pert-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_agnesi_nhyd_cart-BiP360x8-400x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C192_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C96_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bell_3d_cart-BiP300x200-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bryan_fritsch-moist-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_earth-like-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_grabowski-clark-BiP200x10-18x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_held-suarez-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_moist_baroclinic_orog-C48_MG_ex1a_gnu_fast-debug-64bit-crun3 | succeeded |\r\n| plot_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-smag-l300-BiP200x8-5x5_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C96_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar3d_cart-BiP200x200-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_25m-BiP2048x8-25x25_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_50m-BiP1024x8-50x50_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_warm3dbubble-BiP100x100-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_lfric_atm_aquaplanet-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_aquaplanet-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_camembert_case3_gj1214b-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_camembert_case3_gj1214b-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9_chem-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9_chem-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_casim-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_casim-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_coma9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_coma9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_comorph_dev-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_comorph_dev-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_comorph_tb-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C48_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_nwp_gal9-pert-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_nwp_gal9-pert-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_nwp_gal9_coarse_aero-C48_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_nwp_gal9_coarse_aero-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_nwp_gal9_da-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9_da-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9_eda-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9_eda-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9_eda_jada-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9_eda_jada-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9_mol-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9_mol-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_thai_ben1-C48_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_thai_ben1-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_cylinder_xz-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_cylinder_xz-BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C96_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi_ffsl-C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi_ffsl-C96_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi_koren-C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi_koren-C96_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi_mono-C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi_mono-C96_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_vortex_plane-BiP64x64-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_vortex_plane-BiP64x64-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_vortex_plane_vi-BiP64x64-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_vortex_plane_vi-BiP64x64-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_curl_free_reversible_xz_ffsl_bigcfl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_curl_free_reversible_xz_ffsl_bigcfl-BiP100x10-20x20_ex1a_cce_production-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl_bigcfl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl_bigcfl-BiP100x10-20x20_ex1a_cce_production-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C96_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C96_ex1a_cce_production-64bit | succeeded |\r\n| plot_transport_deformation_2d_ffsl_bigcfl-C96_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_ffsl_bigcfl-C96_ex1a_cce_production-64bit | succeeded |\r\n| plot_transport_divergent_2d_cylinder_ffsl_bigcfl-C96_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_divergent_2d_cylinder_ffsl_bigcfl-C96_ex1a_cce_production-64bit | succeeded |\r\n| plot_transport_eternal_fountain_xz_ffsl_bigcfl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_eternal_fountain_xz_ffsl_bigcfl-BiP100x10-20x20_ex1a_cce_production-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_bigcfl-C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_bigcfl-C48_ex1a_cce_production-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| python_unit_tests | succeeded |\r\n| remote-init_azspice | succeeded |\r\n| remote-init_ex1a | succeeded |\r\n| rose-stem_lint_checker | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-var_seuk_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-var_seuk_lam_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_adjoint_tests_canned_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_canned_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_azspice_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_ex1a_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_varying_ls-C12_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_adjoint_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_coupled_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gravity_wave_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_gravity_wave_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gungho_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_gungho_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_agnesi_nhyd_cart-BiP360x8-400x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C192_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C96_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit_pert_off | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit_pert_off | succeeded |\r\n| run_gungho_model_baroclinic-profile_perf-C24_MG_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bell_3d_cart-BiP300x200-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bryan_fritsch-moist-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_gungho_model_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200_realorog-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200_realorog-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_earth-like-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_gh_profile_omp6_6nodes-C192_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_grabowski-clark-BiP200x10-18x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_held-suarez-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_moist_baroclinic_orog-C48_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_moist_baroclinic_orog-C48_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_moist_baroclinic_orog-C48_MG_ex1a_gnu_fast-debug-64bit-crun2 | succeeded |\r\n| run_gungho_model_moist_baroclinic_orog-C48_MG_ex1a_gnu_fast-debug-64bit-crun3 | succeeded |\r\n| run_gungho_model_no-timestep-method-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_no-timestep-method-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-smag-l300-BiP200x8-5x5_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_runge-kutta-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_runge-kutta-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C96_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar3d_cart-BiP200x200-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_semi-implicit-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_semi-implicit-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_25m-BiP2048x8-25x25_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_50m-BiP1024x8-50x50_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_warm3dbubble-BiP100x100-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_gungho_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_tests_integration_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_nwp_gal9-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_nwp_gal9-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_op_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_op_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jules_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jules_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-seuk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-uk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-uk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-ukv_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-ukv_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric_atm_aquaplanet-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_aquaplanet-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_aquaplanet-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_aquaplanet-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_camembert_case3_gj1214b-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_camembert_case3_gj1214b-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_camembert_case3_gj1214b-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_camembert_case3_gj1214b-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_canned_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_1T-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_2T-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_4T-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_chem-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9_chem-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9_chem-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9_chem-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9_chem_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_chem_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_comp_tran_ref_3d_l120-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_hd209458b-C24_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_hd209458b-C24_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_hd209458b-C24_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_hd209458b-C24_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_casim-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_casim-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_casim-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_casim-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_coma9-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_coma9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_coma9-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_coma9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_comorph_dev-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_comorph_dev-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_comorph_dev-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_comorph_dev-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_comorph_tb-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_comorph_tb-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C48_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9-pert-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9-pert-C12_azspice_gnu_fast-debug-32bit_pert_off | succeeded |\r\n| run_lfric_atm_nwp_gal9-pert-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9-pert-C12_ex1a_cce_fast-debug-32bit_pert_off | succeeded |\r\n| run_lfric_atm_nwp_gal9_coarse_aero-C48_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_coarse_aero-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_coarse_aero_threaded-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_coarse_aero_threaded-C48_MG_ex1a_cce_production-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_coarse_aero_threaded-C48_MG_ex1a_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_da-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_da-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_da-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_da-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C12_azspice_gnu_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C12_ex1a_cce_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C48_MG_azspice_gnu_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C48_MG_ex1a_cce_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_eda-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_eda-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_eda-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_eda-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_eda_jada-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_eda_jada-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_eda_jada-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_eda_jada-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_ls_and_jedi-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_ls_and_jedi-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_mol-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_mol-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_mol-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_mol-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_1T-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_2T-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_2T-C48_MG_ex1a_cce_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_4T-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_4T-C48_MG_ex1a_cce_production-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3-seuk_ls_and_jedi_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_ral3-seuk_ls_and_jedi_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_thai_ben1-C48_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_thai_ben1-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-var_seuk_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-var_seuk_lam_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_linear_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_linear_model_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_zero-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_zero-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_linear_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_mesh_BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x100-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP1024x8-50x50_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x10-18x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x200-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x8-5x5_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP2048x8-25x25_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP2x2-50000x50000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x200-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP360x8-400x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1500x1500_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_C16_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C192_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_rot_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_rot_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C96_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C96_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C96_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_falklands_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_falklands_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_uk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_uk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_ukv_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_ukv_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_seuk_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_seuk_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_var_seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_var_seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_cylinder_xz-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_cylinder_xz-BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_name_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_ngarch_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_physics_schemes_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_physics_schemes_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_shallow_water_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C96_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi_ffsl-C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi_ffsl-C96_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi_koren-C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi_koren-C96_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi_mono-C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi_mono-C96_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_shallow_water_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_shallow_water_vortex_plane-BiP64x64-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_vortex_plane-BiP64x64-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_vortex_plane_vi-BiP64x64-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_vortex_plane_vi-BiP64x64-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_socrates_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_socrates_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_solver_bicgstab-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_transport_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_curl_free_reversible_xz_ffsl_bigcfl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_curl_free_reversible_xz_ffsl_bigcfl-BiP100x10-20x20_ex1a_cce_production-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl_bigcfl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl_bigcfl-BiP100x10-20x20_ex1a_cce_production-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C96_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C96_ex1a_cce_production-64bit | succeeded |\r\n| run_transport_deformation_2d_ffsl_bigcfl-C96_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_ffsl_bigcfl-C96_ex1a_cce_production-64bit | succeeded |\r\n| run_transport_divergent_2d_cylinder_ffsl_bigcfl-C96_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_divergent_2d_cylinder_ffsl_bigcfl-C96_ex1a_cce_production-64bit | succeeded |\r\n| run_transport_eternal_fountain_xz_ffsl_bigcfl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_eternal_fountain_xz_ffsl_bigcfl-BiP100x10-20x20_ex1a_cce_production-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_bigcfl-C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_bigcfl-C48_ex1a_cce_production-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| site_validator | succeeded |\r\n| style_checker | succeeded |\r\n| test_launch-exe | succeeded |\r\n| validate_rose_meta | succeeded |\r\n
\r\n
\r\n:hourglass: waiting tasks - 2\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| housekeep_azspice | waiting |\r\n| housekeep_ex1a | waiting |\r\n
\r\n\r\n\r\n## Security Considerations\r\n\r\n- [X] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [X] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 139, "repository": "MetOffice/lfric_apps", "title": "Refactor of damping layer matrix", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/139"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjtrr4", "labels": ["KGO", "cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["jameskent-metoffice", "mo-lucy-gordon"], "sciTech Review": "jameskent-metoffice", "status": "Code Review", "title": "Refactor of damping layer matrix"}, {"assignees": ["yaswant"], "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @andrewcoughtrie \r\nCode Reviewer: @james-bruten-mo \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [ ] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [x] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [x] Documentation is complete and accurate\r\n- [x] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n", "number": 140, "repository": "MetOffice/lfric_apps", "title": "Add workflow to block direct merges to the stable branch", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/140"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjtsP8", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["andrewcoughtrie"], "status": "Done", "title": "Add workflow to block direct merges to the stable branch"}, {"assignees": ["tom-j-h"], "code Review": "stevemullerworth", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @mo-joshuacolclough \r\nCode Reviewer: @stevemullerworth \r\n\r\nWe aim to use a 32-bit build of the TLM/adjoint for JADA. To make this possible, some precision conversions are needed in the code, as JADA itself is all 64-bit.\r\n\r\n- closes #127\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n`~tom.hill/cylc-run/jelf_precision_conversions-developer-1/run1/trac.log`\r\n\r\nNo failures.\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 142, "repository": "MetOffice/lfric_apps", "title": "Floating-point precision conversions in jelf", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/142"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjtzv8", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["mo-joshuacolclough", "stevemullerworth"], "sciTech Review": "mo-joshuacolclough", "status": "Code Review", "title": "Floating-point precision conversions in jelf"}, {"code Review": "@mike-hobson", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @mike-hobson \r\n\r\n\r\nA JULES variable used by the coupling module is defined as double precision. It's used in calculations in LFRic coupling code that are carried out in single precision if 32 bit compilation is used. In this change a copy of the variable is created at the working precision of LFRic so that the coupled model can be used in double or single precision.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [ ] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\nThis change has been used in the coupled climate and coupled NWP workflows since apps2.2 with no problems.\r\n\r\n### trac.log\r\n# Test Suite Results - lfric_apps - i134_fix_coupled_32bit/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | i134_fix_coupled_32bit/run1 |\r\n| Suite User | tim.graham |\r\n| Workflow Start | 2026-01-15T10:16:23 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [timgraham-Met/lfric_apps@134_fix_coupled_32bit](https://github.com/timgraham-Met/lfric_apps/tree/134_fix_coupled_32bit) | False |\r\n| lfric_core | [MetOffice/lfric_core@2025.12.1](https://github.com/MetOffice/lfric_core/tree/2025.12.1) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n
\r\n:white_check_mark: succeeded tasks - 1106\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| build_adjoint_tests_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_azspice_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_ex1a_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_adjoint_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_coupled_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gravity_wave_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_gravity_wave_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_gravity_wave_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_gravity_wave_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_gravity_wave_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gungho_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_gungho_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| build_gungho_model_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_model_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| build_gungho_model_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_gungho_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_tests_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_tests_integration_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_jules_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric2lfric_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric2lfric_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_full-debug-32bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_production-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_fast-debug-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_full-debug-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_production-32bit | succeeded |\r\n| build_lfric_coupled_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_linear_model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_model_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_linear_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_mesh_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_name_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_ngarch_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_ngarch_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_ngarch_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_ngarch_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_physics_schemes_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_physics_schemes_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_shallow_water_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_shallow_water_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_shallow_water_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_shallow_water_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_solver_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_solver_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_solver_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_transport_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_transport_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_transport_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| check_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200_realorog-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200_realorog-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-nrun-v-crun | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-nrun-v-crun | succeeded |\r\n| check_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_runge-kutta-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_runge-kutta-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_semi-implicit-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_semi-implicit-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_nwp_gal9-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_nwp_gal9-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jules_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-seuk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_chem_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_chem_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9_debug-C12_azspice_gnu_full-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_debug-C12_ex1a_cce_full-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_noukca_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_noukca_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_zero-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_zero-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| config_dump_checker | succeeded |\r\n| export-source | succeeded |\r\n| export-source_azspice | succeeded |\r\n| export-source_ex1a | succeeded |\r\n| export-weights_azspice | succeeded |\r\n| export-weights_ex1a | succeeded |\r\n| fcm_make2_drivers | succeeded |\r\n| fcm_make2_lfric_coupled_ocean_ex1a_cce_fast-debug-64bit | succeeded |\r\n| fcm_make_drivers | succeeded |\r\n| fcm_make_lfric_coupled_ocean_ex1a_cce_fast-debug-64bit | succeeded |\r\n| fcm_make_lfric_coupled_river_ex1a_cce_fast-debug-64bit | succeeded |\r\n| generate_weights_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet_lbc_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-falklands_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_azspice_weightgen_script | succeeded |\r\n| global_variables_checker | succeeded |\r\n| housekeep_azspice | succeeded |\r\n| housekeep_ex1a | succeeded |\r\n| local_build_test | succeeded |\r\n| macro_chains_checker | succeeded |\r\n| perftools-export_gungho_model_baroclinic-profile_perf-C24_MG_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| pert_compare_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| pert_compare_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_cylinder_xz-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_cylinder_xz-BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| python_unit_tests | succeeded |\r\n| remote-init_azspice | succeeded |\r\n| remote-init_ex1a | succeeded |\r\n| rose-stem_lint_checker | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_adjoint_tests_canned_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_canned_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_azspice_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_ex1a_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_varying_ls-C12_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_adjoint_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_coupled_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gravity_wave_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_gravity_wave_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gungho_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_gungho_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit_pert_off | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit_pert_off | succeeded |\r\n| run_gungho_model_baroclinic-profile_perf-C24_MG_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_gungho_model_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200_realorog-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200_realorog-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_no-timestep-method-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_no-timestep-method-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_runge-kutta-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_runge-kutta-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_semi-implicit-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_semi-implicit-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_gungho_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_tests_integration_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_nwp_gal9-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_nwp_gal9-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jules_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jules_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-seuk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric_atm_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_canned_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_chem_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_chem_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C12_azspice_gnu_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C12_ex1a_cce_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_linear_model_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_zero-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_zero-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_linear_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_mesh_BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP2x2-50000x50000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1500x1500_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_C16_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_rot_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_rot_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_falklands_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_falklands_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_seuk_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_seuk_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_cylinder_xz-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_cylinder_xz-BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_name_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_ngarch_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_physics_schemes_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_physics_schemes_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_shallow_water_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_shallow_water_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_transport_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| site_validator | succeeded |\r\n| style_checker | succeeded |\r\n| test_launch-exe | succeeded |\r\n| validate_rose_meta | succeeded |\r\n
\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\nTrivial change - so Sci/Tech has been skipped.\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [x] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [x] Documentation is complete and accurate\r\n- [x] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n", "number": 143, "repository": "MetOffice/lfric_apps", "title": "Fix coupled model with 32bit compilation", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/143"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjuC1Y", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["mike-hobson"], "status": "Done", "title": "Fix coupled model with 32bit compilation"}, {"assignees": ["mo-marqh"], "code Review": "EdHone", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @harry-shepherd \r\nCode Reviewer: @EdHone \r\n\r\n\r\n\r\nbuffer_size_factor: fix broken XIOS attribute name in XML configs\r\n\r\nThis configuration is currently invalid, but XIOS2 just ignores it, without throwing an error, but it never does anything.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n# Test Suite Results - lfric_apps - buffer_size_factor/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [buffer_size_factor/run1](https://cylchub/services/cylc-review/cycles/mark.hedley/?suite=buffer_size_factor%2Frun1) |\r\n| Suite User | mark.hedley |\r\n| Workflow Start | 2026-01-15T14:08:17 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [mo-marqh/lfric_apps@checkpointX3_refac1](https://github.com/mo-marqh/lfric_apps/tree/checkpointX3_refac1) | False |\r\n| lfric_core | [MetOffice/lfric_core@2025.12.1](https://github.com/MetOffice/lfric_core/tree/2025.12.1) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 1106\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [x] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [x] Documentation is complete and accurate\r\n- [x] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n", "number": 144, "repository": "MetOffice/lfric_apps", "title": "buffer_size_factor: fix broken XIOS attribute name in XML configs", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/144"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjuJ5E", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["EdHone", "EdHone"], "sciTech Review": "harry-shepherd", "status": "Done", "title": "buffer_size_factor: fix broken XIOS attribute name in XML configs"}, {"assignees": ["DrTVockerodtMO"], "code Review": "mo-lottieturner", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @tom-j-h \r\nCode Reviewer: @mo-lottieturner \r\n\r\n\r\n\r\n\r\nIncludes speed-ups to adjoint transport algorithms and kernels. Main algorithm speedups include removing vestigial setting of internal fields to zero, and then replacing `inc_X_plus_Y` invokes with `setval_x`. In the kernels, mostly consists of removing patterns like:\r\n\r\n```\r\ninternal_field = 0.0_r_def\r\n...\r\ndo idx = loop_min, loop_max\r\n internal_field = internal_field + \r\n ...\r\n internal_field = 0.0_r_def\r\nend do\r\n...\r\n```\r\n\r\nwith simply:\r\n\r\n```\r\ndo idx = loop_min, loop_max\r\n internal_field = \r\n ...\r\nend do\r\n```\r\n\r\nI have also included putting the proper kinds on zero setting as this may trigger implicit float conversions.\r\n\r\n\r\n\r\n\r\n- fixes #141 \r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n# Test Suite Results - lfric_apps - lfric_apps_speedup_adj_transport/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [lfric_apps_speedup_adj_transport/run1](https://cylchub/services/cylc-review/cycles/terence.vockerodt/?suite=lfric_apps_speedup_adj_transport%2Frun1) |\r\n| Suite User | terence.vockerodt |\r\n| Workflow Start | 2026-01-15T14:39:30 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [DrTVockerodtMO/lfric_apps@lfric_apps_speedup_adj_transport](https://github.com/DrTVockerodtMO/lfric_apps/tree/lfric_apps_speedup_adj_transport) | False |\r\n| lfric_core | [MetOffice/lfric_core@5d4d72f](https://github.com/MetOffice/lfric_core/tree/5d4d72f) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 1106\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 145, "repository": "MetOffice/lfric_apps", "title": "Speed-up of adjoint transport", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/145"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjuPxk", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["tom-j-h", "tom-j-h", "mo-lottieturner"], "sciTech Review": "tom-j-h", "status": "Code Review", "title": "Speed-up of adjoint transport"}, {"assignees": ["tommbendall"], "code Review": "allynt", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @atb1995 \r\nCode Reviewer: @allynt \r\n\r\n\r\n\r\n\r\n\r\nThis is a simple fix to the `sci_w3_to_w2_correction` kernel, to ensure that the 2D `displacement` field is indexed correctly (it is currently indexed as a 3D field when it is not).\r\n\r\nThis is linked to https://github.com/MetOffice/lfric_apps/pull/69, which fixes other bugs with the `sample_physics_winds_correction` option.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [X] I have performed a self-review of my own code\r\n- [X] My code follows the project's\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [X] Comments have been included that aid understanding and enhance the\r\n readability of the code\r\n- [X] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite\r\n using this branch\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (e.g. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (e.g. system\r\n tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource\r\n and have been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n# Test Suite Results - lfric_core - core_smp_phys_wind_correct/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [core_smp_phys_wind_correct/run1](https://cylchub/services/cylc-review/cycles/thomas.bendall/?suite=core_smp_phys_wind_correct%2Frun1) |\r\n| Suite User | thomas.bendall |\r\n| Workflow Start | 2026-01-15T15:21:44 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| lfric_core | [tommbendall/lfric_core@TBendall/smp_phys_wind_correct](https://github.com/tommbendall/lfric_core/tree/TBendall/smp_phys_wind_correct) | False |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 372\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [x] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel\r\n interface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 221, "repository": "MetOffice/lfric_core", "title": "Fix Correction to Sampling Physics Winds", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/221"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjuXjo", "labels": ["bug", "Linked Apps", "cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["atb1995", "allynt"], "sciTech Review": "atb1995", "status": "Code Review", "title": "Fix Correction to Sampling Physics Winds"}, {"assignees": ["MetBenjaminWent"], "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @yaswant \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 147, "repository": "MetOffice/lfric_apps", "title": "cla signed ", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/147"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjuiZY", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["yaswant"], "status": "Done", "title": "cla signed "}, {"assignees": ["tommbendall"], "code Review": "cameronbateman-mo", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @thomasmelvin \r\nCode Reviewer: @cameronbateman-mo \r\n\r\n\r\n\r\n\r\n\r\nThis fixes the `wth_to_w0_average` kernel, which was using the incorrect multiplicity to average a field from Wtheta to W0. This kernel is used in a 1-2-1 filter in stochastic physics -- the filter is performed a number of times, and the impact of the incorrect multiplicity is that the stochastic physics tendencies were an order of magnitude too small.\r\n\r\n- linked MetOffice/lfric_apps#148\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite\r\n using this branch\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (e.g. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (e.g. system\r\n tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource\r\n and have been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n# Test Suite Results - lfric_core - fix_w0_wth_filter/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [fix_w0_wth_filter/run1](https://cylchub/services/cylc-review/cycles/thomas.bendall/?suite=fix_w0_wth_filter%2Frun1) |\r\n| Suite User | thomas.bendall |\r\n| Workflow Start | 2026-01-15T17:31:52 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| lfric_core | [tommbendall/lfric_core@TBendall/FixW0WthFilter](https://github.com/tommbendall/lfric_core/tree/TBendall/FixW0WthFilter) | False |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 372\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [x] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel\r\n interface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [X] I understand this area of code and the changes being added\r\n- [X] The proposed changes correspond to the pull request description\r\n- [X] Documentation is sufficient (do documentation papers need updating)\r\n- [X] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 222, "repository": "MetOffice/lfric_core", "title": "Fix averaging kernel used in stochastic physics filter", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/222"}, "id": "PVTI_lADOAGrG5M4A_OAXzgju1p4", "labels": ["bug", "Linked Apps", "KGO", "cla-signed"], "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["thomasmelvin", "cameronbateman-mo"], "sciTech Review": "thomasmelvin", "status": "Code Review", "title": "Fix averaging kernel used in stochastic physics filter"}, {"assignees": ["tommbendall"], "code Review": "oakleybrunt", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @mo-claudiosanchez \r\nCode Reviewer: @oakleybrunt \r\n\r\n\r\n\r\n\r\n\r\nThis ticket applies a handful of simple fixes to issues in stochastic physics:\r\n1. It picks up the fixed Wtheta -> W0 kernel from: https://github.com/MetOffice/lfric_core/pull/222\r\n2. Ensures that the forcing pattern is applied appropriately at W3 and Wtheta points, by passing a new `level_offset` argument to `stph_fp_main_alg`\r\n3. Normalises the shifted on wavenumbers in the same way as the comparative UM code: https://github.com/MetOffice/um/blob/main/src/atmosphere/stochastic_physics/stph_skeb2-stph_skeb2.F90#L1341\r\n\r\n- linked to MetOffice/lfric_core#222\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [ ] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n# Test Suite Results - lfric_apps - stoch_phys_fixes/run4\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [stoch_phys_fixes/run4](https://cylchub/services/cylc-review/cycles/thomas.bendall/?suite=stoch_phys_fixes%2Frun4) |\r\n| Suite User | thomas.bendall |\r\n| Workflow Start | 2026-01-16T13:37:13 |\r\n| Groups Run | all |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [tommbendall/lfric_apps@TBendall/StochPhysFixes](https://github.com/tommbendall/lfric_apps/tree/TBendall/StochPhysFixes) | False |\r\n| lfric_core | [tommbendall/lfric_core@TBendall/FixW0WthFilter](https://github.com/tommbendall/lfric_core/tree/TBendall/FixW0WthFilter) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 1456\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 148, "repository": "MetOffice/lfric_apps", "title": "Stochastic Physics Fixes", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/148"}, "id": "PVTI_lADOAGrG5M4A_OAXzgju66U", "labels": ["bug", "Linked Core", "KGO", "cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["mo-claudiosanchez", "oakleybrunt"], "sciTech Review": "mo-claudiosanchez", "status": "Code Review", "title": "Stochastic Physics Fixes"}, {"assignees": ["cjohnson-pi", "mo-marqh"], "code Review": "mo-marqh", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: James Kent @jameskent-metoffice \r\nCode Reviewer: @mo-marqh \r\n\r\n\r\n\r\n\r\n* Adds split transport to the linear and adjoint code (to give e.g. VHV vertical horizontal vertical rather than 3d)\r\n* Adds a transport_efficiency switch to the split transport and the mol (method of lines) transport code\r\n* Tests in the linear_model app and adjoint_tests\r\n\r\nAssociated with https://github.com/MetOffice/lfric_apps/issues/108 and https://github.com/MetOffice/lfric_apps/issues/113\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [ ] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n# Test Suite Results - lfric_apps - test_split_mol/run15\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [test_split_mol/run15](https://cylchub/services/cylc-review/cycles/christine.johnson/?suite=test_split_mol%2Frun15) |\r\n| Suite User | christine.johnson |\r\n| Workflow Start | 2026-01-16T12:23:18 |\r\n| Groups Run | suite_default |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [cjohnson-pi/lfric_apps@split_mol](https://github.com/cjohnson-pi/lfric_apps/tree/split_mol) | False |\r\n| lfric_core | [MetOffice/lfric_core@5d4d72f](https://github.com/MetOffice/lfric_core/tree/5d4d72f) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 1106\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 149, "repository": "MetOffice/lfric_apps", "title": "Split mol with transport_efficiency", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/149"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjxALo", "labels": ["KGO", "macro", "cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["jameskent-metoffice", "mo-marqh"], "status": "Code Review", "title": "Split mol with transport_efficiency"}, {"assignees": ["james-bruten-mo"], "content": {"body": "Fixing a missed argument that should have been deleted in previous ticket", "number": 165, "repository": "MetOffice/SimSys_Scripts", "title": "Fix export", "type": "PullRequest", "url": "https://github.com/MetOffice/SimSys_Scripts/pull/165"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjxAe4", "labels": ["bug"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/SimSys_Scripts", "reviewers": ["yaswant", "yaswant"], "status": "Done", "title": "Fix export"}, {"assignees": ["mo-alistairp"], "code Review": "MetBenjaminWent", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @TeranIvy \r\nCode Reviewer: @MetBenjaminWent \r\n\r\n\r\n\r\n\r\nThis pull request is necessary to add the GH_SCALAR_ARRAY metadata type into LFRic to support arrays of scalars in LFRic. This PR goes alongside the corresponding PSyclone implentation which adds this support (both https://github.com/stfc/PSyclone/issues/1312 and https://github.com/stfc/PSyclone/pull/3101).\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite\r\n using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n# Test Suite Results - lfric_core - gh_scalar_array_arg_mod/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [gh_scalar_array_arg_mod/run1](https://cylchub/services/cylc-review/cycles/alistair.pirrie/?suite=gh_scalar_array_arg_mod%2Frun1) |\r\n| Suite User | alistair.pirrie |\r\n| Workflow Start | 2026-01-19T10:24:41 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| lfric_core | [mo-alistairp/lfric_core@add_gh_scalar_array_to_argument_mod](https://github.com/mo-alistairp/lfric_core/tree/add_gh_scalar_array_to_argument_mod) | False |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 372\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [x] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel\r\n interface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 223, "repository": "MetOffice/lfric_core", "title": "Add GH_SCALAR_ARRAY to argument_mod", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/223"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjxqXs", "labels": ["enhancement", "cla-signed"], "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["TeranIvy", "TeranIvy", "MetBenjaminWent"], "status": "Code Review", "title": "Add GH_SCALAR_ARRAY to argument_mod"}, {"assignees": ["mo-lucy-gordon"], "code Review": "Pierre-siddall", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @james-bruten-mo \r\nCode Reviewer: @Pierre-siddall \r\n\r\n\r\n\r\nThis adds the fortitude linter to the test suite, and enables one rule to run to demonstrate basic functionality. Subsequent branches will add more rules and testing.\r\n\r\nAssociated with https://github.com/MetOffice/lfric_core/pull/217\r\n\r\nThis addition will mean Fortitude will run when the \"scripts\"/ \"developer\"/ \"all\" groups, or \"fortitude_linter\" group itself is run with the Cylc test suite.\r\n\r\nThe rule added here can be referenced Fortitude documentation website here: https://fortitude.readthedocs.io/en/stable/rules/trailing-whitespace/\r\n\r\nFor reference, these are some example outputs and errors from when fortitude runs:\r\n\r\n- No errors output:\r\nhttps://cylchub/services/cylc-review/view/lucy.gordon?&suite=lapps_add_gh_no_errors%2Frun10&no_fuzzy_time=0&path=log/job/1/fortitude_linter/01/job.out\r\n\r\n- One lint error outputs:\r\nhttps://cylchub/services/cylc-review/view/lucy.gordon?&suite=lapps_add_gh_no_errors%2Frun8&no_fuzzy_time=0&path=log/job/1/fortitude_linter/01/job.err\r\n\r\n- Non-lint error outputs:\r\nhttps://cylchub/services/cylc-review/view/lucy.gordon?&suite=lapps_add_gh_no_errors%2Frun9&no_fuzzy_time=0&path=log/job/1/fortitude_linter/01/job.err\r\n\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n# Test Suite Results - lfric_apps - lapps_add_gh_no_errors/run5\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [lapps_add_gh_no_errors/run5](https://cylchub/services/cylc-review/cycles/lucy.gordon/?suite=lapps_add_gh_no_errors%2Frun5) |\r\n| Suite User | lucy.gordon |\r\n| Workflow Start | 2026-01-15T18:43:49 |\r\n| Groups Run | all |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [mo-lucy-gordon/lfric_apps@adding_fortitude](https://github.com/mo-lucy-gordon/lfric_apps/tree/adding_fortitude) | False |\r\n| lfric_core | [MetOffice/lfric_core@5d4d72f](https://github.com/MetOffice/lfric_core/tree/5d4d72f) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 1457\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 150, "repository": "MetOffice/lfric_apps", "title": "Adding fortitude", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/150"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjxrDM", "labels": ["cla-signed"], "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["james-bruten-mo"], "sciTech Review": "james-bruten-mo", "status": "Changes Requested", "title": "Adding fortitude"}, {"assignees": ["Pierre-siddall"], "code Review": "james-bruten-mo", "content": {"body": "# PR Summary\r\n\r\nCode Reviewer: @james-bruten-mo \r\n\r\n\r\n\r\n\r\n\r\nThis PR implements the usage of a CR checker in the MOCI CI/CD pipeline in order to ensure that a CR has taken place before a change is commited to the main branch. \r\n\r\n\r\n\r\n\r\n\r\ncloses #13 \r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n- [ ] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the Moci rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 16, "repository": "MetOffice/moci", "title": "Add CR checking workflow to CI/CD Pipeline", "type": "PullRequest", "url": "https://github.com/MetOffice/moci/pull/16"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjx82M", "labels": ["enhancement", "cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/moci", "reviewers": ["james-bruten-mo"], "status": "Done", "title": "Add CR checking workflow to CI/CD Pipeline"}, {"assignees": ["cjohnson-pi"], "code Review": "r-sharp", "content": {"body": "# PR Summary\r\n\r\nRemove model-related configuration from mesh configuration files.\r\n\r\nSci/Tech Reviewer: (not required as simple 'tidy up' change) \r\nCode Reviewer: @r-sharp \r\n\r\n\r\n\r\n\r\n* Remove redundant namelists\r\n\r\nAssociated with https://github.com/MetOffice/lfric_apps/issues/112\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n# Test Suite Results - lfric_apps - remove_ral_mesh/run2\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [remove_ral_mesh/run2](https://cylchub/services/cylc-review/cycles/christine.johnson/?suite=remove_ral_mesh%2Frun2) |\r\n| Suite User | christine.johnson |\r\n| Workflow Start | 2026-01-19T09:04:20 |\r\n| Groups Run | suite_default |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [cjohnson-pi/lfric_apps@remove_ral_mesh](https://github.com/cjohnson-pi/lfric_apps/tree/remove_ral_mesh) | False |\r\n| lfric_core | [MetOffice/lfric_core@5d4d72f](https://github.com/MetOffice/lfric_core/tree/5d4d72f) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 1106\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 153, "repository": "MetOffice/lfric_apps", "title": "Remove redundant info from mesh configs", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/153"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjytLQ", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["r-sharp"], "status": "Code Review", "title": "Remove redundant info from mesh configs"}, {"assignees": ["cjohnson-pi"], "code Review": "stevemullerworth", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @tom-j-h \r\nCode Reviewer: @stevemullerworth \r\n\r\n\r\n\r\n\r\n\r\nEnable the tangent linear and adjoint models to use 32 bit precision and test. \r\n\r\n* Update the adjoint_tests and linear_model iodef files so that W2 fields are not written out. This also includes splitting the iodef files into many small iodef files (to mirror the gungho_model iodef files) - this makes it easier to manage going forward.\r\n* Correct the diagnostics source code so that xios only tries to write out fields if they are listed in the iodef file. (32 bit does not work for writing out W2 fields).\r\n* Update the plotting to plot winds in W3 rather than W2 (as W2 are no longer in the diagnostic file).\r\n* Update the adjoint test parameters to avoid dividing by zero errors.\r\n* Add 32bit and 64bit tests, and with a variety of compilers, to the rose stem tests for linear_model and adjoint_tests. For adjoint_tests, slightly different solver settings are required for 32bit and 64 bit.\r\n\r\nhttps://github.com/MetOffice/lfric_apps/issues/111\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n# Test Suite Results - lfric_apps - linear_32bit/run7\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [linear_32bit/run7](https://cylchub/services/cylc-review/cycles/christine.johnson/?suite=linear_32bit%2Frun7) |\r\n| Suite User | christine.johnson |\r\n| Workflow Start | 2026-01-20T10:33:37 |\r\n| Groups Run | suite_default |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [cjohnson-pi/lfric_apps@linear_32bit](https://github.com/cjohnson-pi/lfric_apps/tree/linear_32bit) | False |\r\n| lfric_core | [MetOffice/lfric_core@5d4d72f](https://github.com/MetOffice/lfric_core/tree/5d4d72f) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 1151\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 154, "repository": "MetOffice/lfric_apps", "title": "Linear 32bit", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/154"}, "id": "PVTI_lADOAGrG5M4A_OAXzgj33Mg", "labels": ["KGO", "cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["tom-j-h", "stevemullerworth"], "sciTech Review": "tom-j-h", "status": "Code Review", "title": "Linear 32bit"}, {"assignees": ["Pierre-siddall"], "content": {"body": "# PR Summary\r\n\r\nCode Reviewer: \r\n\r\n\r\n\r\n\r\n\r\nThis PR moves the pylint.rc file into the top level of the MOCI repository so that future linting actions can make use of . \r\n\r\n\r\n\r\n\r\n\r\ncloses #14 \r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the Moci rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 17, "repository": "MetOffice/moci", "title": "Move pylint.rc", "type": "PullRequest", "url": "https://github.com/MetOffice/moci/pull/17"}, "id": "PVTI_lADOAGrG5M4A_OAXzgj39oM", "labels": ["cla-signed"], "repository": "https://github.com/MetOffice/moci", "status": "In Progress", "title": "Move pylint.rc"}, {"assignees": ["mo-alistairp"], "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 155, "repository": "MetOffice/lfric_apps", "title": "Sign contributors", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/155"}, "id": "PVTI_lADOAGrG5M4A_OAXzgj4DXE", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "status": "Done", "title": "Sign contributors"}, {"assignees": ["tom-j-h"], "code Review": "mike-hobson", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @thomasmelvin \r\nCode Reviewer: @mike-hobson \r\n\r\nThis issue was found in development of the JADA benchmark.\r\n\r\n Other changes made meant that `jedi_lfric_tests` was crashing due to a divide by zero here:\r\nhttps://github.com/MetOffice/lfric_core/blob/a4caea11d9984b109fe00d8309a6f135b1cdf59a/infrastructure/source/mesh/panel_decomposition_mod.f90#L252\r\n`mp` is initialised here:\r\nhttps://github.com/MetOffice/lfric_core/blob/a4caea11d9984b109fe00d8309a6f135b1cdf59a/infrastructure/source/mesh/panel_decomposition_mod.f90#L879-L885\r\nThe solution is to instead set `mp = max(1, this_panel_width / shortest_panel_width)`.\r\n\r\nPlease note, I did not find this issue or develop the fix - I just need it for the linked PR below, and there wasn't a PR yet.\r\n\r\n- linked MetOffice/lfric_apps#156\r\n\r\n- closes #226\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite\r\n using this branch\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\nI can't find my `trac.log`! It might be because I ran with `--no-run-name`? Here's the Cylc Review: https://cylchub/services/cylc-review/taskjobs/tom.hill/?suite=fix_jelf_divide_by_zero-develop.\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel\r\n interface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 227, "repository": "MetOffice/lfric_core", "title": "Avoid `panel_decomposition_mod` causing a divide-by-zero", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/227"}, "id": "PVTI_lADOAGrG5M4A_OAXzgj5JPM", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["mo-rickywong", "mike-hobson", "thomasmelvin", "thomasmelvin", "mike-hobson"], "sciTech Review": "thomasmelvin", "status": "Approved", "title": "Avoid `panel_decomposition_mod` causing a divide-by-zero"}, {"assignees": ["tom-j-h"], "code Review": "mike-hobson", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @ss421 \r\nCode Reviewer: @mike-hobson \r\n\r\n**PLEASE NOTE** - this is a follow-on to #132. The branch was created from #132's branch in my fork, but I can't make a PR into that branch because then I would be stuck in my fork. So, to look at the actual changes relevant to this PR alone, look at the diff of this branch with #132's branch: https://github.com/tom-j-h/lfric_apps/compare/jelf_adjoint_test_tolerance_nml...tom-j-h:lfric_apps:align_jedi_lfric_tests_to_linear_model\r\n\r\nSimilar to #84, but for applications of `jedi_lfric_tests` that use the linear and adjoint models.\r\n\r\nThis change relies on the same small code change in science/adjoint as #84. It is also very useful to be able to set adjoint test tolerance via a namelist variable () for running the strict vs. relaxed adjoint tests, hence the order of branching.\r\n\r\nA bug (incorrect adjoint) relating to the incremental wind interpolation added in https://code.metoffice.gov.uk/trac/lfric_apps/ticket/369 has arisen due to the changes here. The specific cause has not been identified. For now, this is switched off. This is not high priority, hence not investigating and fixing it as part of this work. Have opened #128.\r\n\r\nThe same approach to handling the bug highlighted in #84 (`rrt_equals_dt`) is taken here; this has issue #87.\r\n\r\n- linked MetOffice/lfric_core#227\r\n\r\n- is blocked-by #132\r\n- blocks #161\r\n- closes #85\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\nI can't find my `trac.log`! It might be because I ran with `--no-run-name`? Here's the Cylc Review: https://cylchub/services/cylc-review/taskjobs/tom.hill/?suite=align_jedi_lfric_tests_to_linear_model-developer.\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 156, "repository": "MetOffice/lfric_apps", "title": "Align jedi_lfric_tests linear model/adjoint testing to adjoint_tests and linear_model", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/156"}, "id": "PVTI_lADOAGrG5M4A_OAXzgj5NCY", "labels": ["KGO", "cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["ss421", "ss421", "mike-hobson"], "sciTech Review": "ss421", "status": "Code Review", "title": "Align jedi_lfric_tests linear model/adjoint testing to adjoint_tests and linear_model"}, {"assignees": ["mo-jmanners"], "code Review": "yaswant", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @Petzi1 \r\nCode Reviewer: @yaswant \r\n\r\n\r\n\r\n\r\n\r\nCOSP requires an array of lit points (where the sun is above the horizon) so that SW diagnostics can be appropriately sampled. Currently the lit points are calculated for the model timestep. If COSP diagnostics are sampled less often than every model timestep then it would be more accurate to calculate the lit points based on the \"COSP timestep\".\r\n\r\nA namelist option is added: **n_cosp_step**\r\n\r\nThis sets the number of model timesteps over which to calculate **lit_fraction_cosp** in _illuminate_kernel_mod.F90_. The **lit_fraction_cosp** is then passed to _cosp_alg_mod.x90_ in place of **lit_fraction** (the lit fraction for the model timestep).\r\n\r\n\r\n\r\n\r\ncloses #135 \r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [ ] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\nI have run tests using the standard rose-stem climate configuration with n_cosp_step=1 and n_cosp_step=12. The COSP **sunlit_mask** diagnostic was plotted in each case and correctly showed the increase in sunlit area when n_cosp_step=12.\r\n\r\n### trac.log\r\n# Test Suite Results - lfric_apps - cosp_timestep_test/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [cosp_timestep_test/run1](https://cylchub/services/cylc-review/cycles/james.manners/?suite=cosp_timestep_test%2Frun1) |\r\n| Suite User | james.manners |\r\n| Workflow Start | 2026-01-20T10:38:56 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [mo-jmanners/lfric_apps@cosp_timestep_test](https://github.com/mo-jmanners/lfric_apps/tree/cosp_timestep_test) | False |\r\n| lfric_core | [MetOffice/lfric_core@2025.12.1](https://github.com/MetOffice/lfric_core/tree/2025.12.1) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 1106\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 158, "repository": "MetOffice/lfric_apps", "title": "Add a COSP timestep so diagnostics can be sampled less often", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/158"}, "id": "PVTI_lADOAGrG5M4A_OAXzgj8TOw", "labels": ["macro", "cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["Petzi1", "yaswant"], "sciTech Review": "Petzi1", "status": "Code Review", "title": "Add a COSP timestep so diagnostics can be sampled less often"}, {"assignees": ["james-bruten-mo"], "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @jennyhickson \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's style guidelines\r\n- [ ] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the UKCA rose-stem suite\r\n- [ ] If shared files have been modified, I have run the UM and LFRic Apps rose\r\n stem suites\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 16, "repository": "MetOffice/ukca", "title": "add track review project", "type": "PullRequest", "url": "https://github.com/MetOffice/ukca/pull/16"}, "id": "PVTI_lADOAGrG5M4A_OAXzgj8jNQ", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/ukca", "reviewers": ["jennyhickson"], "status": "Done", "title": "add track review project"}, {"assignees": ["james-bruten-mo"], "content": {"body": "Add the project tracker and a basic PR template", "number": 4, "repository": "MetOffice/um_meta", "title": "add project tracker", "type": "PullRequest", "url": "https://github.com/MetOffice/um_meta/pull/4"}, "id": "PVTI_lADOAGrG5M4A_OAXzgj8kcI", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/um_meta", "reviewers": ["jennyhickson"], "status": "Done", "title": "add project tracker"}, {"assignees": ["mike-hobson"], "code Review": "svadams", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: Not Required\r\nCode Reviewer: @svadams\r\n\r\n\r\n\r\nPR #198 added a new file to the repository: `infrastructure/source/field/exchange_map_collection_mod.F90`. Unfortunately, it didn't contain any header info - which managed to get through three levels of review (myself included). This PR adds that header info.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite\r\n using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n# Test Suite Results - lfric_core - Add_copyright/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [Add_copyright/run1](https://cylchub/services/cylc-review/cycles/mike.hobson/?suite=Add_copyright%2Frun1) |\r\n| Suite User | mike.hobson |\r\n| Workflow Start | 2026-01-20T13:13:44 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| lfric_core | [mike-hobson/lfric_core@Add-copyright](https://github.com/mike-hobson/lfric_core/tree/Add-copyright) | False |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 372\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel\r\n interface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\nThis is simply a change to comments within the code. No Sci/Tech review is required\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 228, "repository": "MetOffice/lfric_core", "title": "Update exchange_map_collection with copyright header", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/228"}, "id": "PVTI_lADOAGrG5M4A_OAXzgj8vEk", "labels": ["cla-signed"], "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["MatthewHambley", "svadams"], "status": "Code Review", "title": "Update exchange_map_collection with copyright header"}, {"assignees": ["tom-j-h"], "code Review": "mo-alistairp", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @mo-joshuacolclough \r\nCode Reviewer: @mo-alistairp \r\n\r\n\r\n\r\nA useful capability for testing robustness and performance in a realistic scenario.\r\n\r\n- is blocked-by #156\r\n- blocks #163\r\n- closes #125\r\n\r\n**PLEASE NOTE** - this is a follow-on to #156. The branch was created from #156's branch in my fork, but I can't make a PR into that branch because then I would be stuck in my fork. So, to look at the actual changes relevant to this PR alone, look at the diff of this branch with #156's branch: https://github.com/tom-j-h/lfric_apps/compare/align_jedi_lfric_tests_to_linear_model...tom-j-h:lfric_apps:jelf_real_increment_adjoint_test\r\n\r\n**PLEASE ALSO NOTE** - #156 relies on https://github.com/MetOffice/lfric_core/pull/227, so when testing, I used this Core branch.\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n# Test Suite Results - lfric_apps - jelf_real_increment_adjoint_test-developer/run2\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [jelf_real_increment_adjoint_test-developer/run2](https://cylchub/services/cylc-review/cycles/tom.hill/?suite=jelf_real_increment_adjoint_test-developer%2Frun2) |\r\n| Suite User | tom.hill |\r\n| Workflow Start | 2026-01-20T14:45:21 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [tom-j-h/lfric_apps@jelf_C224_adjoint_tests](https://github.com/tom-j-h/lfric_apps/tree/jelf_C224_adjoint_tests) | False |\r\n| lfric_core | [tom-j-h/lfric_core@2a67d6b](https://github.com/tom-j-h/lfric_core/tree/2a67d6b) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 1108\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 161, "repository": "MetOffice/lfric_apps", "title": "Adjoint test initialised from realistic increment in jelf", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/161"}, "id": "PVTI_lADOAGrG5M4A_OAXzgj8vdU", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["mo-joshuacolclough", "mo-alistairp"], "sciTech Review": "mo-joshuacolclough", "status": "Code Review", "title": "Adjoint test initialised from realistic increment in jelf"}, {"assignees": ["james-bruten-mo"], "code Review": "t00sa", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @MatthewHambley \r\nCode Reviewer: @t00sa \r\n\r\n\r\n\r\nAt the git migration incremental builds on the command line no longer worked as timestamps in github are based on clone date, not commit date. This reenables this functionality by fetching/pulling changes if the build is being rerun. This has been tested on the command line for both a run with physics code (lfric_atm) and without (gungho_model). The 2nd build time is much quicker as expected.\r\n\r\nThis also enables building using the local github mirrors which will be useful once these are also available on the HPC. Again, these have been tested on the cli and with incremental builds.\r\n\r\nThis change adds `get_git_sources` which is mostly a copy of the same file from SimSys_Scripts. Having 2 copies isn't ideal, but I can't think of another way to make that SimSys_Scripts file available when building locally (short of installing it as a library). Hopefully this is something that'll be improved by fab! \r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n# Test Suite Results - lfric_apps - test_incremental_builds_change/run2\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [test_incremental_builds_change/run2](https://cylchub/services/cylc-review/cycles/james.bruten/?suite=test_incremental_builds_change%2Frun2) |\r\n| Suite User | james.bruten |\r\n| Workflow Start | 2026-01-20T15:03:56 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [james-bruten-mo/lfric_apps@improve_local_builds](https://github.com/james-bruten-mo/lfric_apps/tree/improve_local_builds) | False |\r\n| lfric_core | [MetOffice/lfric_core@aa32824](https://github.com/MetOffice/lfric_core/tree/aa32824) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 1106\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 162, "repository": "MetOffice/lfric_apps", "title": "Reenable incremental builds", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/162"}, "id": "PVTI_lADOAGrG5M4A_OAXzgj8-6k", "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["MatthewHambley", "MatthewHambley", "MatthewHambley", "t00sa"], "sciTech Review": "MatthewHambley", "status": "Code Review", "title": "Reenable incremental builds"}, {"assignees": ["Pierre-siddall"], "code Review": "ericaneininger", "content": {"body": "# PR Summary\r\n\r\nCode Reviewer: @ericaneininger \r\n\r\n\r\n\r\n\r\n\r\nThis PR aims to unify shell out commands across MOCI so that they all have the same semantics. The changes involved include adding a separate library to handle shell operations and replacing current shell operations with a newly implemented `exec_subprocess` function. \r\n\r\n\r\n\r\n\r\n\r\ncloses #12 \r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the Moci rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [x] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 19, "repository": "MetOffice/moci", "title": "Move shell out commands into separate library", "type": "PullRequest", "url": "https://github.com/MetOffice/moci/pull/19"}, "id": "PVTI_lADOAGrG5M4A_OAXzgj9CO0", "labels": ["cla-signed"], "repository": "https://github.com/MetOffice/moci", "reviewers": ["ericaneininger", "ericaneininger"], "status": "Code Review", "title": "Move shell out commands into separate library"}, {"assignees": ["tom-j-h"], "code Review": "jennyhickson", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @mo-joshuacolclough \r\nCode Reviewer: @jennyhickson \r\n\r\nFor testing operational TLM/adjoint configuration. There is also a test with solver settings that mean the solver runs closer to convergence, and another test initialised from a realistic increment rather than random data. A new `lfric_atm` task is added to generate this realistic increment, analogous to the existing C12 task. A script to convert the output of the `lfric_atm` task to a file suitable to use for the `jedi_tlm_tests` task is added, again analogous to the existing C12 task. I've put these files in the locations in my `$DATADIR` that you can see in the diff - but these will need to be added to `BIG_DATA_DIR` as part of this change.\r\n\r\n- is blocked-by #161\r\n- blocks #182\r\n- closes #126\r\n\r\n**PLEASE NOTE** - this is a follow-on to #161. The branch was created from #161's branch in my fork, but I can't make a PR into that branch because then I would be stuck in my fork. So, to look at the actual changes relevant to this PR alone, look at the diff of this branch with #161's branch: https://github.com/tom-j-h/lfric_apps/compare/jelf_real_increment_adjoint_test...tom-j-h:lfric_apps:jelf_C224_adjoint_tests\r\n\r\n**PLEASE ALSO NOTE** - #161 is blocked by #156 which relies on https://github.com/MetOffice/lfric_core/pull/227, so when testing, I used this Core branch.\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n# Test Suite Results - lfric_apps - jelf_C224_adjoint_tests-developer/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [jelf_C224_adjoint_tests-developer/run1](https://cylchub/services/cylc-review/cycles/tom.hill/?suite=jelf_C224_adjoint_tests-developer%2Frun1) |\r\n| Suite User | tom.hill |\r\n| Workflow Start | 2026-01-22T11:33:44 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [tom-j-h/lfric_apps@tlad_boundary_layer](https://github.com/tom-j-h/lfric_apps/tree/tlad_boundary_layer) | False |\r\n| lfric_core | [tom-j-h/lfric_core@2a67d6b](https://github.com/tom-j-h/lfric_core/tree/2a67d6b) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 1112\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 163, "repository": "MetOffice/lfric_apps", "title": "C224 adjoint tests in jelf", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/163"}, "id": "PVTI_lADOAGrG5M4A_OAXzgj9Nd8", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["mo-joshuacolclough", "jennyhickson"], "sciTech Review": "mo-joshuacolclough", "status": "Code Review", "title": "C224 adjoint tests in jelf"}, {"assignees": ["tommbendall"], "code Review": "MatthewHambley", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @jameskent-metoffice \r\nCode Reviewer: @MatthewHambley \r\n\r\n\r\n\r\n\r\n\r\nThis PR adds `height_w0` and `height_w2h` diagnostics, which allows the vertical height to be output at W0 and W2H points, if requested (and if #164 is addressed for lfric_atm).\r\n\r\nI have also taken the opportunity to do a small bit of tidying of `gungho_diagnostics_driver_mod.F90`\r\n\r\n**Linked to**: MetOffice/lfric_core#229\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n# Test Suite Results - lfric_apps - heights_more/run4\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [heights_more/run4](https://cylchub/services/cylc-review/cycles/thomas.bendall/?suite=heights_more%2Frun4) |\r\n| Suite User | thomas.bendall |\r\n| Workflow Start | 2026-01-21T10:07:40 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [tommbendall/lfric_apps@TBendall/HeightsMore](https://github.com/tommbendall/lfric_apps/tree/TBendall/HeightsMore) | False |\r\n| lfric_core | [tommbendall/lfric_core@TBendall/HeightW0](https://github.com/tommbendall/lfric_core/tree/TBendall/HeightW0) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 1106\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 165, "repository": "MetOffice/lfric_apps", "title": "Allow outputting of vertical height in W0 and W2H function spaces", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/165"}, "id": "PVTI_lADOAGrG5M4A_OAXzgj9gpY", "labels": ["enhancement", "Linked Core", "cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["jameskent-metoffice", "MatthewHambley"], "sciTech Review": "jameskent-metoffice", "status": "Code Review", "title": "Allow outputting of vertical height in W0 and W2H function spaces"}, {"assignees": ["tommbendall"], "code Review": "MatthewHambley", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @jameskent-metoffice \r\nCode Reviewer: @MatthewHambley \r\n\r\n\r\n\r\n\r\n\r\nWe can already store the vertical height field at many function spaces, but the W0 function space is missing. This PR adds it in.\r\n\r\n**Linked to**: MetOffice/lfric_apps#165\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite\r\n using this branch\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (e.g. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (e.g. system\r\n tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource\r\n and have been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n# Test Suite Results - lfric_core - height_w0/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [height_w0/run1](https://cylchub/services/cylc-review/cycles/thomas.bendall/?suite=height_w0%2Frun1) |\r\n| Suite User | thomas.bendall |\r\n| Workflow Start | 2026-01-20T16:15:30 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| lfric_core | [tommbendall/lfric_core@TBendall/HeightW0](https://github.com/tommbendall/lfric_core/tree/TBendall/HeightW0) | False |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 372\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel\r\n interface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 229, "repository": "MetOffice/lfric_core", "title": "Allow computation and storage of height at W0", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/229"}, "id": "PVTI_lADOAGrG5M4A_OAXzgj9iHk", "labels": ["enhancement", "Linked Apps", "cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["jameskent-metoffice", "MatthewHambley"], "sciTech Review": "jameskent-metoffice", "status": "Code Review", "title": "Allow computation and storage of height at W0"}, {"assignees": ["t00sa"], "code Review": "r-sharp", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @james-bruten-mo\r\nCode Reviewer: @r-sharp \r\n\r\n\r\nThis is based on the changes in trac ticket [#779](https://code.metoffice.gov.uk/trac/lfric_apps/ticket/779). It also enables github personal access tokens by default on monsoon and defines an additional EX1A_WEIGHTS group to prevent undefined parent errors when running the ex1a group on monsoon.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\nTest suite also run on the monsoon 3 partition. Build tasks passed as expected, as did a number of model runs. Some test runs failed due to known problems with missing files in `$BIG_DATA_DIR`.\r\n\r\n### trac.log\r\n\r\n# Test Suite Results - lfric_apps - monsoon-branch/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [monsoon-branch/run1](https://cylchub/services/cylc-review/cycles/sam.clarke/?suite=monsoon-branch%2Frun1) |\r\n| Suite User | sam.clarke |\r\n| Workflow Start | 2026-01-20T14:32:41 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [t00sa/lfric_apps@monsoon3-support](https://github.com/t00sa/lfric_apps/tree/monsoon3-support) | False |\r\n| lfric_core | [MetOffice/lfric_core@2025.12.1](https://github.com/MetOffice/lfric_core/tree/2025.12.1) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 1106\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 166, "repository": "MetOffice/lfric_apps", "title": "Add support for monsoon 3", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/166"}, "id": "PVTI_lADOAGrG5M4A_OAXzgj9nCo", "labels": ["cla-signed"], "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["james-bruten-mo"], "sciTech Review": "james-bruten-mo", "status": "Changes Requested", "title": "Add support for monsoon 3"}, {"assignees": ["EdHone"], "code Review": "mo-lucy-gordon", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @harry-shepherd \r\nCode Reviewer: @mo-lucy-gordon \r\n\r\n\r\n\r\n\r\n\r\nThis PR enables the handling of cyclic data files(files which we start reading again from the beginning once we reach the end) by the new lfric-xios temporal controller. The contents of this PR are:\r\n- a simple switch within the source code to enable reading cyclic data\r\n- new functionality to perform an additional \"initial\" read of data where necessary (when our first model step is not perfectly aligned with a file datapoint)\r\n - two new integration tests (`NonSync`) which exercise this functionality\r\n- several integrations tests which exercise the reading of cyclic data\r\n- new test capability to generate plots to check the validity of the tests\r\n\r\n\r\n\r\n\r\n- closes #230\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite\r\n using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (e.g. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (e.g. system\r\n tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource\r\n and have been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\nSome plots from the LFRic-XIOS integration tests which show that the data is being correctly digested\r\n\"LfricXiosFullCyclicTest\"\r\n\"LfricXiosNonCyclicNonSyncTest\"\r\n\r\n\r\n\r\n\r\n### trac.log\r\n\r\n# Test Suite Results - lfric_core - lfric_core-230-cyclic-read/run4\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [lfric_core-230-cyclic-read/run4](https://cylchub/services/cylc-review/cycles/edward.hone/?suite=lfric_core-230-cyclic-read%2Frun4) |\r\n| Suite User | edward.hone |\r\n| Workflow Start | 2026-01-26T13:26:17 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| lfric_core | [EdHone/lfric_core@230-cyclic-read](https://github.com/EdHone/lfric_core/tree/230-cyclic-read) | False |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 372\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel\r\n interface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 231, "repository": "MetOffice/lfric_core", "title": "Enable reading for cyclic data files using temporal controller", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/231"}, "id": "PVTI_lADOAGrG5M4A_OAXzgj-OEc", "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["harry-shepherd"], "sciTech Review": "harry-shepherd", "status": "Code Review", "title": "Enable reading for cyclic data files using temporal controller"}, {"assignees": ["james-bruten-mo"], "code Review": "yaswant", "content": {"body": "Sorry, got the logic around when labels should/shouldn't be added slightly wrong in the last PR. This can be seen in MetOffice/lfric_apps#166 which should have a `cla-signed` label. This should fix that.", "number": 56, "repository": "MetOffice/growss", "title": "Fix labelling logic", "type": "PullRequest", "url": "https://github.com/MetOffice/growss/pull/56"}, "id": "PVTI_lADOAGrG5M4A_OAXzgj_mJ8", "labels": ["bug"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/growss", "reviewers": ["yaswant"], "status": "Done", "title": "Fix labelling logic"}, {"assignees": ["EdHone"], "code Review": "mo-lucy-gordon", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @andrewcoughtrie \r\nCode Reviewer: @mo-lucy-gordon \r\n\r\n\r\n\r\n\r\n\r\nThis change introduces a flexible benchmarking configuration for the IO_Demo app. The new functionality enables a user to specify a number of fields to write, along with a number of seconds to wait during a step to mimic simulation time. This simple configuration should enable us to exercise the LFRic I/O capability for a number of different use-cases, including writing data at scale.\r\nThe changes include:\r\n- source changes in `io_demo` to enable new benchmark capability\r\n- changes to build the app which enable the use of the `sleep()` intrinsic for all compilers\r\n- changes to `io_demo` metadata which allow the app to be controlled a bit more intuitively\r\n- tweaks to the `io_demo` algorithm layer to enable it to be stable at scale\r\n- tweaks to `launch-exe` to enable running with XIOS servers in the lfric_core rose-stem\r\n- new rose-stem tests, along with a new `io_demo_benchmark` group which runs at large-ish scale (C224)\r\n\r\n\r\n\r\n\r\n\r\n- closes #216\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite\r\n using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (e.g. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (e.g. system\r\n tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource\r\n and have been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n# Test Suite Results - lfric_core - lfric_core-216-iodemo-bench-vernier/run7\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [lfric_core-216-iodemo-bench-vernier/run7](https://cylchub/services/cylc-review/cycles/edward.hone/?suite=lfric_core-216-iodemo-bench-vernier%2Frun7) |\r\n| Suite User | edward.hone |\r\n| Workflow Start | 2026-01-21T10:28:40 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| lfric_core | [EdHone/lfric_core@216-iodemo-bench-vernier](https://github.com/EdHone/lfric_core/tree/216-iodemo-bench-vernier) | False |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 377\r\n\r\n\r\n# Test Suite Results - lfric_core - lfric_core-216-iodemo-bench-vernier/run6\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [lfric_core-216-iodemo-bench-vernier/run6](https://cylchub/services/cylc-review/cycles/edward.hone/?suite=lfric_core-216-iodemo-bench-vernier%2Frun6) |\r\n| Suite User | edward.hone |\r\n| Workflow Start | 2026-01-21T10:17:45 |\r\n| Groups Run | io_demo_benchmark |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| lfric_core | [EdHone/lfric_core@216-iodemo-bench-vernier](https://github.com/EdHone/lfric_core/tree/216-iodemo-bench-vernier) | False |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 10\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel\r\n interface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 232, "repository": "MetOffice/lfric_core", "title": "IO_Demo benchmarking configuration", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/232"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkAIYs", "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["MatthewHambley", "stevemullerworth", "andrewcoughtrie", "mo-lucy-gordon"], "sciTech Review": "andrewcoughtrie", "status": "Code Review", "title": "IO_Demo benchmarking configuration"}, {"assignees": ["ppharris"], "code Review": "james-bruten-mo", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @james-bruten-mo \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n- fixes #24 \r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] **N/A** If editing `rose-meta/jules-shared` then have you supplied a linked UM PR?\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the JULES rose-stem suite\r\n- [x] **N/A** If shared files have been modified, I have run the UM and LFRic Apps rose\r\n stem suites\r\n- [x] **N/A** If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [x] **N/A** I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\nI've run the Rose stem tests at `SITE=cehwl1`, which includes the newly running `rivers-only` tasks, and `SITE=meto`. Both `trac.log` files are pasted below.\r\n\r\n\r\n\r\n# Test Suite Results - jules - vn8.0_stem/run2 - SITE = cehwl1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [vn8.0_stem/run2](https://cylchub/services/cylc-review/cycles/ppha/?suite=vn8.0_stem%2Frun2) |\r\n| Suite User | ppha |\r\n| Workflow Start | 2026-01-21T13:22:40 |\r\n| Groups Run | all |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| jules | [ppharris/jules@cehwl_fix_rivers](https://github.com/ppharris/jules/tree/cehwl_fix_rivers) | False |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 210\r\n\r\n# Test Suite Results - jules - vn8.0_stem/run3 - SITE = meto\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [vn8.0_stem/run3](https://cylchub/services/cylc-review/cycles/philip.harris/?suite=vn8.0_stem%2Frun3) |\r\n| Suite User | philip.harris |\r\n| Workflow Start | 2026-01-21T14:36:43 |\r\n| Groups Run | all |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| jules | [ppharris/jules@cehwl_fix_rivers](https://github.com/ppharris/jules/tree/cehwl_fix_rivers) | False |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 667\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] **N/A** Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] **N/A** Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## Approvals\r\n\r\nPlease request all relevant approvals. See the CodeOwners.txt file for section\r\nowners.\r\n\r\n### Technical\r\n\r\n- [ ] JULES Code Owner\r\n- [ ] OpenMP\r\n- [x] River Routing\r\n- [ ] Rose Stem\r\n- [ ] Rose Metadata\r\n- [ ] Upgrade Macros\r\n\r\n### Scientific\r\n\r\n- [ ] Surface\r\n- [ ] Hydrology\r\n- [ ] Vegetation\r\n- [ ] Veg3 RED Demography\r\n- [ ] Biogechemistry\r\n- [ ] Biogenic fluxes\r\n- [ ] Fire\r\n- [ ] Lakes\r\n- [ ] Evaluation\r\n- [ ] Imogen\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 35, "repository": "MetOffice/jules", "title": "Rose stem fixes for cehwl site", "type": "PullRequest", "url": "https://github.com/MetOffice/jules/pull/35"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkAlGo", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/jules", "reviewers": ["james-bruten-mo"], "status": "Done", "title": "Rose stem fixes for cehwl site"}, {"assignees": ["jameskent-metoffice"], "code Review": "cameronbateman-mo", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @thomasmelvin\r\nCode Reviewer: @cameronbateman-mo \r\n\r\n\r\n\r\nThis ticket fixes a potential stability issue, where departure points can't be found for consistent tracers with FFSL transport schemes. This issue is very rare, and has only been observed once when running Climate Case Studies with very large time steps. The fix is to revert to advective form (and thus break conservation) for the tracers on this time step only. \r\n\r\nI've put this on a switch as some users might desire conservation above all else. None of the tests in the test suites see this stability issue, so there are no kgo changes whether the switch is on or off. (I've tested it worked on the Climate Case Study that failed).\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [ ] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\nI have run the gungho_model and lfric_atm suites with the switch set to true. As expected nothing changed and all the kgos passed. I have left the switch set to false. \r\n\r\n### trac.log\r\n\r\n# Test Suite Results - lfric_apps - advective_tracer_stability_test/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [advective_tracer_stability_test/run1](https://cylchub/services/cylc-review/cycles/james.kent/?suite=advective_tracer_stability_test%2Frun1) |\r\n| Suite User | james.kent |\r\n| Workflow Start | 2026-01-21T12:45:35 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [jameskent-metoffice/lfric_apps@advective_tracer_stability_test](https://github.com/jameskent-metoffice/lfric_apps/tree/advective_tracer_stability_test) | False |\r\n| lfric_core | [MetOffice/lfric_core@2025.12.1](https://github.com/MetOffice/lfric_core/tree/2025.12.1) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 1106\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 171, "repository": "MetOffice/lfric_apps", "title": "Added Stability with Advective Tracers", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/171"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkApM8", "labels": ["macro", "cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["thomasmelvin", "cameronbateman-mo", "ss421", "matthewrmshin"], "sciTech Review": "thomasmelvin", "status": "Approved", "title": "Added Stability with Advective Tracers"}, {"assignees": ["mike-hobson", "mo-marqh"], "code Review": "EdHone", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @mike-hobson \r\nCode Reviewer: @EdHone \r\n\r\n\r\n\r\n\r\n\r\nThis change re-introduces lfric_core calipers that were used for the 2025 performance analysis.\r\n\r\nit is a stand alone change.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite\r\n using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n`group=all` tests run\r\n\r\n### trac.log\r\n\r\n# Test Suite Results - lfric_core - calipersKPI25-core/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [calipersKPI25-core/run1](https://cylchub/services/cylc-review/cycles/mark.hedley/?suite=calipersKPI25-core%2Frun1) |\r\n| Suite User | mark.hedley |\r\n| Workflow Start | 2026-01-21T11:44:02 |\r\n| Groups Run | all |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| lfric_core | [mo-marqh/lfric_core@calipersKPI25-core](https://github.com/mo-marqh/lfric_core/tree/calipersKPI25-core) | False |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 372\r\n\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel\r\n interface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [x] Documentation is complete and accurate\r\n- [x] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n", "number": 233, "repository": "MetOffice/lfric_core", "title": "Verniered Calipers performance 25 core", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/233"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkArdU", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["mike-hobson", "MatthewHambley", "EdHone", "mike-hobson", "EdHone"], "sciTech Review": "mike-hobson", "status": "Done", "title": "Verniered Calipers performance 25 core"}, {"assignees": ["cjohnson-pi"], "code Review": "mo-marqh", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @tommbendall \r\nCode Reviewer: @mo-marqh \r\n\r\n\r\n\r\n\r\n\r\nhttps://github.com/MetOffice/lfric_apps/issues/115\r\n\r\n* Add a new nwp_gal9 configuration in the linear integration tests (to match the default configuration for the linear_model). This includes using data read from file to initialise the tests.\r\n* Update the integration tests linear drivers to match the linear model driver (this required a safety switch added to gungho_step)\r\n* Reduce the number of tests for the semi-implicit and runge-kutta configs (as nwp_gal9 is running most tests)\r\n* Update the plot_convergence.sh script (this is not part of the test suite but is useful to have) - this runs the integration tests multiple times and creates plots of the data.\r\n* Improve how the convergence rate in the integration tests is tested.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### Plot convergence results\r\nhttps://github.com/MetOffice/lfric_apps/issues/115#issuecomment-3785320045\r\n\r\n### trac.log\r\n\r\n\r\n# Test Suite Results - lfric_apps - update_integration_test/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [update_integration_test/run1](https://cylchub/services/cylc-review/cycles/christine.johnson/?suite=update_integration_test%2Frun1) |\r\n| Suite User | christine.johnson |\r\n| Workflow Start | 2026-01-28T15:09:36 |\r\n| Groups Run | suite_default |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [cjohnson-pi/lfric_apps@update_integration_t](https://github.com/cjohnson-pi/lfric_apps/tree/update_integration_t) | False |\r\n| lfric_core | [MetOffice/lfric_core@aa32824](https://github.com/MetOffice/lfric_core/tree/aa32824) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 1106\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 170, "repository": "MetOffice/lfric_apps", "title": "Update linear integration tests", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/170"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkAyUQ", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["tommbendall", "mo-marqh", "ss421", "matthewrmshin"], "sciTech Review": "tommbendall", "status": "Code Review", "title": "Update linear integration tests"}, {"assignees": ["james-bruten-mo"], "code Review": "yaswant", "content": {"body": "Adds `continue-on-error: true` to some of the steps in the project tracker workflow, to avoid failures where a user can't be assigned/review", "number": 57, "repository": "MetOffice/growss", "title": "Ignore unable assign", "type": "PullRequest", "url": "https://github.com/MetOffice/growss/pull/57"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkBdlo", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/growss", "reviewers": ["yaswant", "yaswant"], "status": "Done", "title": "Ignore unable assign"}, {"assignees": ["bblay-mo"], "content": {"body": "# PR Summary\r\nAdd Section 20 diagnostic _icao heights_, as described in https://github.com/MetOffice/Section20/issues/24.\r\n\r\nTodo:\r\n - [ ] Seek help on making `\"convection__pres_cv_base\"` and base available to the algo.\r\n - [ ] Should we add icao could _depth_ to this PR too? It's in the previous ticket for us to copy.\r\n - [ ] **Wait for Paul to make suites work with lfric apps vn3.0/GitHub**\r\n - [ ] Need to confirm we don't need to iterate DOFs.\r\n - [ ] Rebase once #98, from which this was branched, has been merged.\r\n - Until then, this PR will also show the changes from #98.\r\n - We can see just the changes _ontop_ here (needs fork invite): https://github.com/bblay-mo/lfric_apps/compare/diags_geopot_thickness...bblay-mo:lfric_apps:diags_icao_heights?expand=1\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid understanding and enhance the readability of the code\r\n- [ ] My changes generate no new warnings\r\n- [ ] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 169, "repository": "MetOffice/lfric_apps", "title": "S20 Diags: icao heights", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/169"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkBtFs", "labels": ["cla-signed"], "repository": "https://github.com/MetOffice/lfric_apps", "status": "In Progress", "title": "S20 Diags: icao heights"}, {"assignees": ["mo-jmanners"], "code Review": "t00sa", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @Petzi1\r\nCode Reviewer: @t00sa \r\n\r\n\r\n\r\n\r\n\r\nHITRAN (high-resolution transmission molecular absorption database) 2024 has just been released with the addition of new species and small changes to the Total Internal Partition Sums for existing species. The constants used by Socrates are updated to match the new data from here:\r\n\r\nhttps://hitran.org/docs/iso-meta/\r\n\r\n\r\n\r\n\r\ncloses #13 \r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] If shared files have been modified, I have run the UM and LFRic Apps rose\r\n stem suites\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\n## Socrates quick_tests\r\n\r\n```\r\nTesting code compiled in /home/users/james.manners/git/socrates_admin/bin\r\n---\r\nTesting simple calls to the runes interface:\r\nFiles output.txt and gfortran_8_1_0.txt differ\r\nMatched ifort 19.0.0 output\r\nOK\r\n---\r\nTesting the runes_nc driver using LFRic diagnostic input:\r\nMatched SW output\r\nMatched LW output\r\nOK\r\n---\r\nTesting raw_input to convert column data into input files:\r\nOK\r\n---\r\nTesting Cl_run_cdl for ICRCCM case 27 (LW) on AER profiles:\r\nOK\r\n---\r\nTesting Cl_run_cdf on multiple profiles:\r\nOK\r\n---\r\nTest Cl_run_cdf for CIRC case 6\r\n(HadGEM, GA7, SES and 300/260 band spectral files):\r\nOK\r\n---\r\nTesting pseudo-spherical geometry code:\r\nCalculating zenith angles: 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98\r\nOK\r\n---\r\nTesting photolysis and non-LTE code:\r\nMapping sub-bands to channels.\r\nFiles cdl_trop_xsw_photol_g1_13.hrts and gfortran_trop_xsw_photol_g1_13.hrts differ\r\nFiles cdl_trop_xsw_photol_sg_g1_13.hrts and gfortran_trop_xsw_photol_sg_g1_13.hrts differ\r\nFiles cdl_trop_xsw_photol_sg_g3_no.ph_rate_8 and gfortran_trop_xsw_photol_sg_g3_no.ph_rate_8 differ\r\nFiles cdl_trop_xsw_photol_sg_g4_no.ph_rate_8 and gfortran_trop_xsw_photol_sg_g4_no.ph_rate_8 differ\r\nFiles cdl_trop_xsw_photol_ch.ph_rate_2 and gfortran_trop_xsw_photol_ch.ph_rate_2 differ\r\nFiles cdl_trop_320_sg_ch.ph_rate_2 and gfortran_trop_320_sg_ch.ph_rate_2 differ\r\nMatched ifort output\r\nOK\r\n---\r\nTest McICA code (create mcica_data file and run on CRM profile):\r\nOK\r\n---\r\nTesting creation of aerosol properties for a spectral file:\r\nRunning scatter_90...\r\nRunning scatter_average_90...\r\nRunning prep_spec...\r\nFiles sp_with_aer and sp_gfortran12 differ\r\nMatched ifort19 output\r\nOK\r\n---\r\nTesting generating and running with prescribed optical properties:\r\nRunning raw_input...\r\nRunning Cscatter... please wait...\r\nRunning Cscatter... please wait...\r\nRunning Cscatter_average...\r\nRunning Cscatter_average...\r\nRunning prep_opt_profile...\r\nRunning Cl_run_cdl...\r\nAll done.\r\nOK\r\n---\r\nTesting Crun_mono to calculate radiances:\r\nFiles rc3_ref.radn and rc3.radn differ\r\nMatched ifort19 output\r\nOK\r\n---\r\nTesting Ccorr_k to generate correlated-k coefficients:\r\nFiles sp_lw_300_gfortran12 and sp_lw_300_dev differ\r\nMatched ifort19 output\r\nOK\r\n---\r\nTesting flexchem chemistry:\r\nFiles output.txt and kgo_output.txt differ\r\nMatched ifort19 output\r\nOK\r\n---\r\nTesting CDL scripts:\r\nOK\r\n---\r\nAll passed.\r\n```\r\n\r\n## UM trac.log\r\n# Test Suite Results - um - um_socrates13_tips/run2\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [um_socrates13_tips/run2](https://cylchub/services/cylc-review/cycles/james.manners/?suite=um_socrates13_tips%2Frun2) |\r\n| Suite User | james.manners |\r\n| Workflow Start | 2026-01-22T16:30:38 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| mule | [MetOffice/mule@2025.10.1](https://github.com/MetOffice/mule/tree/2025.10.1) | True |\r\n| shumlib | [MetOffice/shumlib@2025.10.1](https://github.com/MetOffice/shumlib/tree/2025.10.1) | True |\r\n| socrates | [mo-jmanners/socrates@13_tips](https://github.com/mo-jmanners/socrates/tree/13_tips) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n| um | [mo-jmanners/um@13d7d55](https://github.com/mo-jmanners/um/tree/13d7d55) | True |\r\n| um_aux | [MetOffice/um_aux@2025.12.1](https://github.com/MetOffice/um_aux/tree/2025.12.1) | True |\r\n| um_meta | [MetOffice/um_meta@2025.12.1](https://github.com/MetOffice/um_meta/tree/2025.12.1) | True |\r\n\r\n## Approvals\r\n### Code Owners\r\n* No UM Code Owners Required\r\n### Config Owners\r\nNo UM Config Owners Required\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 880\r\n\r\n\r\n## LFRic Apps trac.log\r\n# Test Suite Results - lfric_apps - lfric_apps_socrates13_tips/run2\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [lfric_apps_socrates13_tips/run2](https://cylchub/services/cylc-review/cycles/james.manners/?suite=lfric_apps_socrates13_tips%2Frun2) |\r\n| Suite User | james.manners |\r\n| Workflow Start | 2026-01-22T16:11:47 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [mo-jmanners/lfric_apps@144de38](https://github.com/mo-jmanners/lfric_apps/tree/144de38) | True |\r\n| lfric_core | [MetOffice/lfric_core@5d4d72f](https://github.com/MetOffice/lfric_core/tree/5d4d72f) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [mo-jmanners/socrates@13_tips](https://github.com/mo-jmanners/socrates/tree/13_tips) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 1106\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [x] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [x] Documentation is complete and accurate\r\n- [x] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n", "number": 14, "repository": "MetOffice/socrates", "title": "Update Total Internal Partition Sums for HITRAN2024", "type": "PullRequest", "url": "https://github.com/MetOffice/socrates/pull/14"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkBvcI", "labels": ["enhancement", "KGO"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/socrates", "reviewers": ["Petzi1", "t00sa"], "status": "Done", "title": "Update Total Internal Partition Sums for HITRAN2024"}, {"assignees": ["james-bruten-mo"], "code Review": "jennyhickson", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @jennyhickson \r\n\r\n\r\n\r\nUpdate the jedi code owners and fix a typo in the PR template\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid understanding and enhance the readability of the code\r\n- [ ] My changes generate no new warnings\r\n- [ ] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 173, "repository": "MetOffice/lfric_apps", "title": "update jedi owners", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/173"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkB2Vo", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["jennyhickson", "jennyhickson"], "status": "Done", "title": "update jedi owners"}, {"assignees": ["tommbendall"], "code Review": "allynt", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @jameskent-metoffice \r\nCode Reviewer: @allynt \r\n\r\n\r\n\r\n\r\n\r\nOur current infrastructure sets a single maximum halo depth for all meshes, irrespective of their relative resolution. This isn't is necessary and doesn't match the use of the meshes. In typical atmospheric configurations, the finest mesh needs a depth appropriate for the transport scheme, which is set by the expected maximum Courant number (e.g. 10). In contrast, the coarser meshes used for multigrid generally only need a halo depth of 2, and yet we still set their depth to 10. For these multigrid meshes, this means the halos can end up extending beyond the adjacent partitions (unnecessarily!)\r\n\r\nThis is a linked PR, which addresses this by allowing different halo depths to be set for different meshes. The change is to make the driver's `stencil_depth` argument an array of `stencil_depths`, corresponding to the different meshes.\r\n\r\n**Linked to**: MetOffice/lfric_apps#174\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n# Test Suite Results - lfric_core - multi_stencil_depths/run3\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [multi_stencil_depths/run3](https://cylchub/services/cylc-review/cycles/thomas.bendall/?suite=multi_stencil_depths%2Frun3) |\r\n| Suite User | thomas.bendall |\r\n| Workflow Start | 2026-01-22T18:09:39 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| lfric_core | [tommbendall/lfric_core@TBendall/MultiStencilDepths](https://github.com/tommbendall/lfric_core/tree/TBendall/MultiStencilDepths) | False |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 372\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](mailto:ToolsCollabDevTeam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 237, "repository": "MetOffice/lfric_core", "title": "Allow different meshes to have different maximum halo depths", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/237"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkEdBA", "labels": ["enhancement", "Linked Apps", "cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["jameskent-metoffice", "mike-hobson", "stevemullerworth", "andrewcoughtrie", "mo-rickywong", "EdHone", "allynt"], "sciTech Review": "jameskent-metoffice", "status": "Code Review", "title": "Allow different meshes to have different maximum halo depths"}, {"assignees": ["tommbendall"], "code Review": "allynt", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @jameskent-metoffice \r\nCode Reviewer: @allynt \r\n\r\n\r\n\r\n\r\n\r\nOur current infrastructure sets a single maximum halo depth for all meshes, irrespective of their relative resolution. This isn't is necessary and doesn't match the use of the meshes. In typical atmospheric configurations, the finest mesh needs a depth appropriate for the transport scheme, which is set by the expected maximum Courant number (e.g. 10). In contrast, the coarser meshes used for multigrid generally only need a halo depth of 2, and yet we still set their depth to 10. For these multigrid meshes, this means the halos can end up extending beyond the adjacent partitions (unnecessarily!)\r\n\r\nThis is a linked PR, which addresses this by allowing different halo depths to be set for different meshes. The change in this PR is:\r\n- make `get_required_stencil_depth` a subroutine, returning the value for a particular mesh\r\n- removing `get_required_stencil_depth` and replacing it with `mesh%get_halo_depth()` in appropriate science code\r\n- picking up the change in API to the LFRic-Core `init_mesh` routine, so that `stencil_depth` is a rank-1 array (with different values passed for different meshes)\r\n\r\nThis changes the KGO of the Schar mountain test. This is because this test has a width in the y-direction of 8 cells, but uses a maximum halo depth of 4 -- meaning that the furthest cell in both positive and negative directions is the same. This triggers issue #175. A separate PR should change those vertical slice tests to avoid this issue.\r\n\r\n**Linked to**: MetOffice/lfric_core#237\r\n\r\nPlot of test with changed KGO:\r\n\"schar_stencil_depths\"\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n# Test Suite Results - lfric_apps - stencil_depths/run8\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [stencil_depths/run8](https://cylchub/services/cylc-review/cycles/thomas.bendall/?suite=stencil_depths%2Frun8) |\r\n| Suite User | thomas.bendall |\r\n| Workflow Start | 2026-01-22T21:03:01 |\r\n| Groups Run | all |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [tommbendall/lfric_apps@TBendall/StencilDepths](https://github.com/tommbendall/lfric_apps/tree/TBendall/StencilDepths) | False |\r\n| lfric_core | [tommbendall/lfric_core@TBendall/MultiStencilDepths](https://github.com/tommbendall/lfric_core/tree/TBendall/MultiStencilDepths) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 1456\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 174, "repository": "MetOffice/lfric_apps", "title": "Allow different meshes to have different maximum halo depths", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/174"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkEd7c", "labels": ["enhancement", "Linked Core", "KGO", "cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["jameskent-metoffice", "allynt"], "sciTech Review": "jameskent-metoffice", "status": "Code Review", "title": "Allow different meshes to have different maximum halo depths"}, {"assignees": ["tommbendall"], "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @thomasmelvin \r\nCode Reviewer: \r\n\r\n\r\n\r\n\r\n\r\nThis adds two new options for the function spaces used by the coordinate fields:\r\n1. The coordinate fields can be in a Wtheta space (discontinuous in the horizontal, continuous in the vertical)\r\n2. The coordinate space used by multigrid meshes is not tied to the coordinate space used by the prime mesh\r\n\r\nWhen `Wtheta` is used as the function space, the vertical coordinate order is kept as 0, making the coordinates linear in the vertical. These options are an optimisation to the coordinate fields, which will facilitate us moving to `coord_order=2` which gives a significant boost in NWP score:\r\n1. using a `Wtheta` space allows us to have fewer DoFs per cell (see below)\r\n2. keeping a lower coordinate order for multigrid meshes has minimal scientific impact but is a small optimisation, and avoids the bug reported in #239 \r\n\r\n**Linked to** MetOffice/lfric_apps#179\r\n\r\n**Test branch**: the action of the upgrade macro can be seen on my test branch here: https://github.com/tommbendall/lfric_core/pull/2/changes\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [ ] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n# Test Suite Results - lfric_core - test_coord_space/run4\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [test_coord_space/run4](https://cylchub/services/cylc-review/cycles/thomas.bendall/?suite=test_coord_space%2Frun4) |\r\n| Suite User | thomas.bendall |\r\n| Workflow Start | 2026-01-23T16:18:08 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| lfric_core | [tommbendall/lfric_core@TBendall/TestCoordSpace](https://github.com/tommbendall/lfric_core/tree/TBendall/TestCoordSpace) | False |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 372\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](mailto:ToolsCollabDevTeam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 238, "repository": "MetOffice/lfric_core", "title": "New function space options for coordinate fields", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/238"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkFJIA", "labels": ["enhancement", "Linked Apps", "macro", "cla-modified"], "milestone": {"description": "Code Review deadline is 29th May 2026 (SciTech review to be completed by this date)", "dueOn": "2026-07-01T00:00:00Z", "title": "Summer 2026"}, "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["thomasmelvin"], "sciTech Review": "thomasmelvin", "status": "Code Review", "title": "New function space options for coordinate fields"}, {"assignees": ["Pierre-siddall"], "content": {"body": "# PR Summary\r\n\r\nCode Reviewer: \r\n\r\n\r\n\r\n\r\n\r\nThis PR aims to add a ruff linting action to the MOCI CI/CD pipeline and convert the current pylint.rc file to the ruff equivalent using a ruff.toml file \r\n\r\n\r\n\r\n\r\n\r\ncloses #15\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's style guidelines\r\n- [ ] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the Moci rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 20, "repository": "MetOffice/moci", "title": "Add ruff linting", "type": "PullRequest", "url": "https://github.com/MetOffice/moci/pull/20"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkFLcE", "repository": "https://github.com/MetOffice/moci", "status": "In Progress", "title": "Add ruff linting"}, {"assignees": ["james-bruten-mo"], "content": {"body": "Fix incorrect merge in project action", "number": 58, "repository": "MetOffice/growss", "title": "fix project action", "type": "PullRequest", "url": "https://github.com/MetOffice/growss/pull/58"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkFS00", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/growss", "reviewers": ["yaswant"], "status": "Done", "title": "fix project action"}, {"assignees": ["mo-marqh"], "code Review": "oakleybrunt", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @tommbendall \r\nCode Reviewer: @oakleybrunt \r\n\r\n\r\n\r\n\r\n\r\nComprehensive timing caliper location review.\r\n\r\nThis is a rework of work done for performance analyses in late 2025, migrating everything caliper related from:\r\nhttps://code.metoffice.gov.uk/trac/lfric_apps/browser/main/branches/pkg/Share/r15393_kpi_benchmark\r\nessentially from this commit:\r\n[https://code.metoffice.gov.uk/trac/lfric_apps/changeset?reponame=&new=15498%40main%2Fbranches%2\u2026](https://code.metoffice.gov.uk/trac/lfric_apps/changeset?reponame=&new=15498%40main%2Fbranches%2Fpkg%2FShare%2Fr15393_kpi_benchmark&old=15460%40main%2Fbranches%2Fpkg%2FShare%2Fr15393_kpi_benchmark)\r\n\r\nbut updated from source migration and adoption of `timing` wrapper from #80 \r\n\r\n\r\n\r\n\r\n\r\n- is related to https://github.com/MetOffice/lfric_core/pull/233 (but these are not linked, each is stand-alone)\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n# Test Suite Results - lfric_apps - calipersPerformance25/run6\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [calipersPerformance25/run6](https://cylchub/services/cylc-review/cycles/mark.hedley/?suite=calipersPerformance25%2Frun6) |\r\n| Suite User | mark.hedley |\r\n| Workflow Start | 2026-01-22T19:51:59 |\r\n| Groups Run | all |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [mo-marqh/lfric_apps@calipersPerformance25](https://github.com/mo-marqh/lfric_apps/tree/calipersPerformance25) | False |\r\n| lfric_core | [MetOffice/lfric_core@aa32824](https://github.com/MetOffice/lfric_core/tree/aa32824) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 1456\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [x] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [x] Documentation is complete and accurate\r\n- [x] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n", "number": 176, "repository": "MetOffice/lfric_apps", "title": "Calipers performance25", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/176"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkFm48", "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["tommbendall", "oakleybrunt", "tommbendall"], "sciTech Review": "tommbendall", "status": "Approved", "title": "Calipers performance25"}, {"assignees": ["thomasmelvin"], "code Review": "mo-rickywong", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @tommbendall \r\nCode Reviewer: @mo-rickywong \r\n\r\n\r\n\r\n\r\n\r\nAdd in a number of solver optimisations.\r\nThe principle performance improvement in this pull request is to split the application of the mixed operator into two seperate new kernels. \r\n\r\n1. science/gungho/source/kernel/solver/apply_mixed_u_operator_kernel_mod.F90 computes the lhs for the horizontal wind components. This is done in the broken W2h space so that a write access can be used, avoiding any colouring or halo swaps. After this call the broken W2h lhs needs to be assembled in the continuous W2h space (reapplying a single halo swap)\r\n2. science/gungho/source/kernel/solver/apply_mixed_wp_operator_kernel_mod.F90 computes the lhs for the vertical wind and pressure components. As these fields lie on horizontally discontinuous spaces there is no colouring or halo exchanges needed.\r\n\r\nThese changes result in a performance improvement for 2 main reasons\r\n1. Better use of memory by splitting the single large kernel into two kernels and (presumably) getting better cache usage\r\n2. Reduction in the number of halo swaps from 3 (for the horizontal wind, vertical wind & pressure) into 1 (for the broken horizontal wind lhs). It appears one of these saved halo exchanges is then reinstated elsewhere in the code, likely when the pressure lhs or vertical wind lhs is needed in the halo region in a seperate kernel.\r\n\r\nThe C224 & C896 lfric atm tests in the test suite were run with these changes giving the following solver times\r\n\r\n| Code | C224 | C896 |\r\n|--------|--------|--------|\r\n| Trunk | 50.71 | 114.57 |\r\n| Branch | 41.59 | 98.69 |\r\n\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [X] I have performed a self-review of my own code\r\n- [X] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [X] Comments have been included that aid understanding and enhance the readability of the code\r\n- [X] My changes generate no new warnings\r\n- [ ] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [X] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [X] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [X] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [X] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\nThese results are from before the KGO update. The failure in the lfric_inputs appears not to be due to this pull request as none of the code changes should be used and is likely one of the occasional lfric_inputs failures that we see\r\n\r\n# Test Suite Results - lfric_apps - solver_improvements/run6\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [solver_improvements/run6](https://cylchub/services/cylc-review/cycles/thomas.melvin/?suite=solver_improvements%2Frun6) |\r\n| Suite User | thomas.melvin |\r\n| Workflow Start | 2026-01-22T11:45:40 |\r\n| Groups Run | all |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [thomasmelvin/lfric_apps@solver_improvements](https://github.com/thomasmelvin/lfric_apps/tree/solver_improvements) | False |\r\n| lfric_core | [MetOffice/lfric_core@2025.12.1](https://github.com/MetOffice/lfric_core/tree/2025.12.1) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n
\r\n:x: failed tasks - 150\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| check_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | failed |\r\n| check_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_dcmip200_realorog-C48_MG_azspice_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_dcmip200_realorog-C48_MG_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | failed |\r\n| check_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | failed |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_semi-implicit-for-linear-C12_azspice_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_semi-implicit-for-linear-C12_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | failed |\r\n| check_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | failed |\r\n| check_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | failed |\r\n| check_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | failed |\r\n| check_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | failed |\r\n| check_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | failed |\r\n| check_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | failed |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_fast-debug-64bit | failed |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_full-debug-64bit | failed |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_ex1a_cce_fast-debug-64bit | failed |\r\n| check_jedi_lfric_tests_nwp_gal9-C12_azspice_gnu_fast-debug-64bit | failed |\r\n| check_jedi_lfric_tests_nwp_gal9-C12_ex1a_cce_fast-debug-64bit | failed |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_azspice_gnu_fast-debug-64bit | failed |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_ex1a_cce_fast-debug-64bit | failed |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_op_azspice_gnu_fast-debug-64bit | failed |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_op_ex1a_cce_fast-debug-64bit | failed |\r\n| check_lfric_atm_aquaplanet-C12_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_aquaplanet-C12_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_camembert_case3_gj1214b-C12_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_camembert_case3_gj1214b-C12_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_clim_gal9_1T-C12_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_clim_gal9_1T-C48_MG_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_clim_gal9_2T-C12_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_clim_gal9_2T-C48_MG_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_clim_gal9_4T-C48_MG_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_clim_gal9_chem-C12_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_clim_gal9_chem-C12_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_clim_gal9_chem_1T-C12_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_clim_gal9_chem_2T-C12_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_comp_tran_ref_3d_l120-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_hd209458b-C24_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_hd209458b-C24_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_casim-C12_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_casim-C12_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_coma9-C12_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_coma9-C12_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_comorph_dev-C12_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_comorph_dev-C12_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_comorph_tb-C12_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | failed |\r\n| check_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | failed |\r\n| check_lfric_atm_nwp_gal9-C48_MG_azspice_gnu_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9-C48_MG_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9-pert-C12_azspice_gnu_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9-pert-C12_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_coarse_aero-C48_MG_azspice_gnu_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_coarse_aero-C48_MG_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_coarse_aero_threaded-C48_MG_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_coarse_aero_threaded-C48_MG_ex1a_gnu_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_da-C12_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_gal9_da-C12_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_gal9_debug-C12_azspice_gnu_full-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_debug-C12_ex1a_cce_full-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_debug-C48_MG_azspice_gnu_full-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_debug-C48_MG_ex1a_cce_full-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_eda-C12_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_gal9_eda-C12_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_gal9_eda_jada-C12_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_gal9_eda_jada-C12_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_gal9_mol-C12_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_gal9_mol-C12_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_gal9_noukca_1T-C12_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_noukca_1T-C48_MG_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_noukca_2T-C12_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_noukca_2T-C48_MG_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_noukca_2T-C48_MG_ex1a_cce_full-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_noukca_4T-C48_MG_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | failed |\r\n| check_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_thai_ben1-C48_MG_azspice_gnu_fast-debug-32bit | failed |\r\n| check_lfric_atm_thai_ben1-C48_MG_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | failed |\r\n| check_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | failed |\r\n| check_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | failed |\r\n| check_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | failed |\r\n| check_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | failed |\r\n| check_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | failed |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_full-debug-64bit | failed |\r\n
\r\n:white_check_mark: succeeded tasks - 1305\r\n
\r\n:hourglass: waiting tasks - 2\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| housekeep_azspice | waiting |\r\n| housekeep_ex1a | waiting |\r\n
\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [X] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [X] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 177, "repository": "MetOffice/lfric_apps", "title": "Solver improvements", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/177"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkFuds", "labels": ["KGO", "cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["tommbendall", "mo-rickywong"], "sciTech Review": "tommbendall", "status": "Code Review", "title": "Solver improvements"}, {"assignees": ["tommbendall"], "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: \r\n\r\n\r\n\r\n\r\n\r\nThis PR picks up on the new coordinate field namelist options from https://github.com/MetOffice/lfric_core/pull/238.\r\n\r\nTo facilitate coordinate spaces with some level of continuity, the `assign_orography_field` routines have been altered. The coordinate fields are copied so that heights are not adjusted multiple times by different cells.\r\n\r\nThe vast majority of changes involve the addition of the new namelist options into all of the required files.\r\n\r\n**Linked to** MetOffice/lfric_core#238\r\n\r\n**Test branch**: a link to show the action of the upgrade macro and KGOs can be found: https://github.com/tommbendall/lfric_apps/pull/1/changes\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid understanding and enhance the readability of the code\r\n- [ ] My changes generate no new warnings\r\n- [ ] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 179, "repository": "MetOffice/lfric_apps", "title": "New function space options for coordinate fields", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/179"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkGOo4", "labels": ["enhancement", "Linked Core", "KGO", "macro", "cla-signed"], "milestone": {"description": "Code Review deadline is 29th May 2026 (SciTech review to be completed by this date)", "dueOn": "2026-07-01T00:00:00Z", "title": "Summer 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "status": "In Progress", "title": "New function space options for coordinate fields"}, {"content": {"body": "Currently, once the code reviewer requests changes or approves a PR the logic to recognise a trivial PR breaks. Add checks for these states to the workflow. ", "number": 59, "repository": "MetOffice/growss", "title": "Add logic to check CR in progress for trivial review", "type": "PullRequest", "url": "https://github.com/MetOffice/growss/pull/59"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkIlPE", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/growss", "reviewers": ["james-bruten-mo"], "status": "Done", "title": "Add logic to check CR in progress for trivial review"}, {"content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: \r\n\r\n\r\n\r\n\r\n\r\nFrom the issue:\r\n> Following the completion of [ukca:#302](https://code.metoffice.gov.uk/trac/ukca/ticket/302), I spotted a few more things in ASAD that could do with refactoring. These include:\r\n>\r\n> * Drop unused arrays and arguments from previous refactoring work.\r\n> * Use the more accurate array name `permuted_nonzero_map` rather than `nonzero_map_unordered`.\r\n> * Details on LU factorisation.\r\n> * Clarity of comments.\r\n\r\n\r\n\r\n\r\nCloses #17\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the UKCA rose-stem suite\r\n- [ ] If shared files have been modified, I have run the UM and LFRic Apps rose\r\n stem suites\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 18, "repository": "MetOffice/ukca", "title": "Further ASAD refactoring", "type": "PullRequest", "url": "https://github.com/MetOffice/ukca/pull/18"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkIv0I", "labels": ["cla-signed"], "repository": "https://github.com/MetOffice/ukca", "status": "In Progress", "title": "Further ASAD refactoring"}, {"assignees": ["tommbendall"], "code Review": "andrewcoughtrie", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @thomasmelvin \r\nCode Reviewer: @andrewcoughtrie \r\n\r\n\r\n\r\n\r\n\r\nThis just fixes an incorrect team name in `CodeOwners.txt`.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [ ] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n# Test Suite Results - lfric_core - code_owner_fix/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [code_owner_fix/run1](https://cylchub/services/cylc-review/cycles/thomas.bendall/?suite=code_owner_fix%2Frun1) |\r\n| Suite User | thomas.bendall |\r\n| Workflow Start | 2026-01-23T16:30:55 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| lfric_core | [tommbendall/lfric_core@TBendall/CodeOwnerFix](https://github.com/tommbendall/lfric_core/tree/TBendall/CodeOwnerFix) | False |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 372\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](mailto:ToolsCollabDevTeam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 244, "repository": "MetOffice/lfric_core", "title": "Correction to team in code owner file", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/244"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkJ85k", "labels": ["bug", "documentation", "cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["thomasmelvin", "andrewcoughtrie"], "sciTech Review": "thomasmelvin", "status": "Done", "title": "Correction to team in code owner file"}, {"assignees": ["tommbendall"], "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @atb1995 \r\nCode Reviewer: \r\n\r\n\r\n\r\n\r\n\r\nThis PR implements the capability to represent orography with higher-order finite elements. This allows the heights of cell centres to be match the values defined in the orography ancillary files, and avoids loss of power in the orography from the process of averaging from W3 to W0 points. This has shown a significant improvement in NWP scores.\r\n\r\nThe changes in this PR can be summarised as:\r\n1. Ensure that the `surface_altitude` field has a degree that is specified through a new namelist option (and is not inherited from `element_order`)\r\n2. Reorganise `orography` namelist, to make this more coherent by:\r\n- moving `n_orog_smooth` into the `orography` namelist from `initialization`\r\n- moving `w0_orography_mapping` into the `orography` namelist and renaming it as `w0_multigrid_mapping`\r\n- introducing the `orography_order` option\r\n3. Set `coord_order=2` and `orography_order=2` as default for the gungho_model, lfric_atm, linear_model and jedi_lfric_tests apps (which updates KGOs)\r\n\r\n**Results**\r\nThe use of quadratic coordinate order has shown considerable improvement in NWP scores. For results, see:\r\n- [Winter DA trials](https://wwwspice/~martin.willett/verification/GC6B2_quadorog_JFM25_C224/imt/page.html?DDV)\r\n- [Standard NWP case studies](https://wwwspice/~thomas.bendall/GES/GC5-LFRic_dv665/imt/page.html?DDV)\r\n- [C64 AMIP](https://wwwspice/~thomas.bendall/autoassess/u-dv532_vs_u-ds757/valnote/means_global.html)\r\n\r\n**Important Links**:\r\nThis branch is built on top of two other PRs. To see the changes _just for this PR_, please see here: https://github.com/tommbendall/lfric_apps/pull/2/changes\r\n\r\nThere is also a _test branch_ which shows the KGO changes and action of the upgrade macro. To see the changes in that test branch, please see here: https://github.com/tommbendall/lfric_apps/pull/3/changes\r\n\r\n**Blocked By**:\r\n- #174 \r\n- #179 \r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid understanding and enhance the readability of the code\r\n- [ ] My changes generate no new warnings\r\n- [ ] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 180, "repository": "MetOffice/lfric_apps", "title": "Higher-order Orography", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/180"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkKD0U", "labels": ["enhancement", "KGO", "macro", "cla-signed"], "milestone": {"description": "Code Review deadline is 29th May 2026 (SciTech review to be completed by this date)", "dueOn": "2026-07-01T00:00:00Z", "title": "Summer 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["atb1995"], "sciTech Review": "atb1995", "status": "SciTech Review", "title": "Higher-order Orography"}, {"assignees": ["maggiehendry"], "code Review": "james-bruten-mo", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @Adrian-Lock\r\nCode Reviewer: @james-bruten-mo \r\n\r\n\r\n\r\n\r\nThis PR is a part of a series of tickets to consolidate all the JULES metadata in the JULES repository, to have one source and be imported from there. Please see \u200b[\u200bjules:wiki/SharingJULESmetadata](https://code.metoffice.gov.uk/trac/jules/intertrac/wiki/SharingJULESmetadata) (soon to be also migrated to GitHub).\r\n\r\nThis PR migrates `jules_model_environment` and the remainder of `jules_surface` apart from `l_aggregate` & `i_aggregate_opt`. These are deprecated options and if they were to be migrated, **jules-lfric** amendments would be required for a deprecated option as a result of the `i_aggregate_opt` enumeration. \r\n\r\nThis PR also migrates the parent specific metadata amendments (i.e. from **um-atmos** in the UM repository) to the JULES repository (**jules-um**) to allow metadata changes to be self-contained in the JULES repository.\r\n\r\nItems in the `jules_surface` namelist that are not available to LFRic have been made unavailable both in the metadata (LFRic apps repo PR) and in **src/control/lfric/check_unavailable_options_mod.F90**, which has also been rewritten with LFRic apps modules.\r\n\r\n**src/control/shared/jules_surface_mod.F90** where possible (i.e. where no major code changes were required) defaults have been changed to missing data and print statement formats have been updated for ease of reading in LFRic apps.\r\n\r\n\r\n- linked MetOffice/um#30\r\n- linked MetOffice/lfric_apps#181\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] If editing `rose-meta/jules-shared` then have you supplied a linked UM PR?\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the JULES rose-stem suite\r\n- [x] If shared files have been modified, I have run the UM and LFRic Apps rose\r\n stem suites\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\n### trac.log\r\n\r\nSee:\r\nMetOffice/um/pull/30 for UM trac.log\r\nMetOffice/lfric_apps/pull/181 for LFRoc apps trac.log\r\n\r\n\r\n# Test Suite Results - jules - jules-test-26-migrate-jules_model_environment/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [jules-test-26-migrate-jules_model_environment/run1](https://cylchub/services/cylc-review/cycles/margaret.hendry/?suite=jules-test-26-migrate-jules_model_environment%2Frun1) |\r\n| Suite User | margaret.hendry |\r\n| Workflow Start | 2026-01-25T18:25:05 |\r\n| Groups Run | all |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| jules | [maggiehendry/jules@26-migrate-jules_model_environment-remainder-of-jules_surface-to-jules-shared](https://github.com/maggiehendry/jules/tree/26-migrate-jules_model_environment-remainder-of-jules_surface-to-jules-shared) | False |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 667\r\n\r\n\r\n\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## Approvals\r\n\r\nPlease request all relevant approvals. See the CodeOwners.txt file for section\r\nowners.\r\n\r\n### Technical\r\n\r\n- [ ] JULES Code Owner\r\n- [ ] OpenMP\r\n- [ ] River Routing\r\n- [ ] Rose Stem\r\n- [x] Rose Metadata\r\n- [ ] Upgrade Macros\r\n\r\n### Scientific\r\n\r\n- [ ] Surface\r\n- [ ] Hydrology\r\n- [ ] Vegetation\r\n- [ ] Veg3 RED Demography\r\n- [ ] Biogechemistry\r\n- [ ] Biogenic fluxes\r\n- [ ] Fire\r\n- [ ] Lakes\r\n- [ ] Evaluation\r\n- [ ] Imogen\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 39, "repository": "MetOffice/jules", "title": "Migrate metadata jules_model_environment remainder of jules_surface to jules-shared", "type": "PullRequest", "url": "https://github.com/MetOffice/jules/pull/39"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkNnj4", "labels": ["Linked UM", "Linked Apps", "macro", "cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/jules", "reviewers": ["Adrian-Lock"], "sciTech Review": "Adrian-Lock", "status": "SciTech Review", "title": "Migrate metadata jules_model_environment remainder of jules_surface to jules-shared"}, {"assignees": ["james-bruten-mo"], "code Review": "jennyhickson", "content": {"body": "# PR Summary\r\n\r\nCode Reviewer: @jennyhickson \r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [ ] I have locally built the documentation successfully, and the output of changed sections is as expected\r\n\r\n# Code Review\r\n\r\n- [ ] The changes are coherent and valid\r\n", "number": 561, "repository": "MetOffice/simulation-systems", "title": "fix typo", "type": "PullRequest", "url": "https://github.com/MetOffice/simulation-systems/pull/561"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkO-yk", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/simulation-systems", "reviewers": ["jennyhickson"], "status": "Done", "title": "fix typo"}, {"assignees": ["maggiehendry"], "code Review": "james-bruten-mo", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @Adrian-Lock\r\nCode Reviewer: @james-bruten-mo \r\n\r\n\r\n\r\n\r\n\r\nThis PR is a part of a series of tickets to consolidate all the JULES metadata in the JULES repository, to have one source and be imported from there. Please see \u200b[\u200bjules:wiki/SharingJULESmetadata](https://code.metoffice.gov.uk/trac/jules/intertrac/wiki/SharingJULESmetadata) (soon to be also migrated to GitHub).\r\n\r\nThis PR migrates `jules_model_environment` and the remainder of `jules_surface` apart from `l_aggregate` & `i_aggregate_opt`. These are deprecated options and if they were to be migrated, **jules-lfric** amendments would be required for a deprecated option as a result of the `i_aggregate_opt` enumeration.\r\n\r\nThis ticket also migrates the parent specific metadata amendments related to these namelists (i.e. from **um-atmos** in the UM repository) to the JULES repository (**jules-um**) to allow metadata changes to be self-contained in the JULES repository.\r\n\r\n\r\n- linked MetOffice/jules#39\r\n- linked MetOffice/lfric_apps#181\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the UM rose-stem suite\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n# Test Suite Results - um - um-test-27-migrate-jules_model_environment/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [um-test-27-migrate-jules_model_environment/run1](https://cylchub/services/cylc-review/cycles/margaret.hendry/?suite=um-test-27-migrate-jules_model_environment%2Frun1) |\r\n| Suite User | margaret.hendry |\r\n| Workflow Start | 2026-01-25T18:54:21 |\r\n| Groups Run | developer', 'jules |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [maggiehendry/jules@17ebfeb](https://github.com/maggiehendry/jules/tree/17ebfeb) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| mule | [MetOffice/mule@2025.10.1](https://github.com/MetOffice/mule/tree/2025.10.1) | True |\r\n| shumlib | [MetOffice/shumlib@2025.10.1](https://github.com/MetOffice/shumlib/tree/2025.10.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n| um | [maggiehendry/um@test-27-migrate-jules_model_environment-remainder-of-jules_surface-to-jules-shared](https://github.com/maggiehendry/um/tree/test-27-migrate-jules_model_environment-remainder-of-jules_surface-to-jules-shared) | False |\r\n| um_aux | [MetOffice/um_aux@2025.12.1](https://github.com/MetOffice/um_aux/tree/2025.12.1) | True |\r\n| um_meta | [MetOffice/um_meta@2025.12.1](https://github.com/MetOffice/um_meta/tree/2025.12.1) | True |\r\n\r\n## Approvals\r\n### Code Owners\r\n| Section | Owner | Deputy | State |\r\n| :--- | :--- | :--- | :--- |\r\n| upgrade_macros | ericaneininger | jamesbruten | Pending |\r\n| rose_stem | jamesbruten | roddysharp | Pending |\r\n| rose-meta.conf | owner_of_related_section | -- | Pending |\r\n### Config Owners\r\nNo UM Config Owners Required\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 1069\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 30, "repository": "MetOffice/um", "title": "Migrate metadata jules_model_environment remainder of jules_surface to jules-shared", "type": "PullRequest", "url": "https://github.com/MetOffice/um/pull/30"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkP6oM", "repository": "https://github.com/MetOffice/um", "reviewers": ["Adrian-Lock"], "sciTech Review": "Adrian-Lock", "status": "SciTech Review", "title": "Migrate metadata jules_model_environment remainder of jules_surface to jules-shared"}, {"assignees": ["maggiehendry"], "code Review": "james-bruten-mo", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @Adrian-Lock \r\nCode Reviewer: @james-bruten-mo \r\n\r\n\r\n\r\n\r\n\r\nThis PR is a part of a series of tickets to consolidate all the JULES metadata in the JULES repository, to have one source and be imported from there. Please see \u200b[\u200bjules:wiki/SharingJULESmetadata](https://code.metoffice.gov.uk/trac/jules/intertrac/wiki/SharingJULESmetadata) (soon to be also migrated to GitHub).\r\n\r\nThis PR migrates `jules_model_environment` and the remainder of `jules_surface` apart from `l_aggregate` & `i_aggregate_opt`. These are deprecated options and if they were to be migrated, **jules-lfric** amendments would be required for a deprecated option as a result of the `i_aggregate_opt` enumeration.\r\n\r\nAs a result of the way \"lfric_coupled\" imports the component config files `jules_model_environment` cannot exist in two different components (one overwrites the other). A workaround to this and to deal with the enumeration differences was to add the namelist appended with \"_lfric\" i.e. `namelist:jules_model_enviroment_lfric` to avoid overwiting Rivers config. `lsm_id` has not been added until the namelist can be shared. \r\n\r\nItems in the `jules_surface` namelist that are not available to LFRic have been made unavailable in the metadata by adding them to the `namelist:jules_model_environment_lfric=l_jules_parent` trigger list with \"not_lfric\". They are made unavailable in the code by **src/control/lfric/check_unavailable_options_mod.F90** in the JULES repo.\r\n\r\n\r\n- linked MetOffice/jules#39\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n# [Test Suite Results - lfric_apps - lfric_apps-test2-146-migrate-jules_model_environment/run1](#lfric_apps-test)\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [lfric_apps-test2-146-migrate-jules_model_environment/run1](https://cylchub/services/cylc-review/cycles/margaret.hendry/?suite=lfric_apps-test2-146-migrate-jules_model_environment%2Frun1) |\r\n| Suite User | margaret.hendry |\r\n| Workflow Start | 2026-01-26T12:44:13 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [maggiehendry/jules@17ebfeb](https://github.com/maggiehendry/jules/tree/17ebfeb) | True |\r\n| lfric_apps | [maggiehendry/lfric_apps@146-migrate-jules_model_environment-remainder-of-jules_surface-to-jules-shared](https://github.com/maggiehendry/lfric_apps/tree/146-migrate-jules_model_environment-remainder-of-jules_surface-to-jules-shared) | False |\r\n| lfric_core | [MetOffice/lfric_core@2025.12.1](https://github.com/MetOffice/lfric_core/tree/2025.12.1) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 1106\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 181, "repository": "MetOffice/lfric_apps", "title": "Migrate metadata jules_model_environment remainder of jules_surface to jules-shared", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/181"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkQJxI", "labels": ["cla-signed"], "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["Adrian-Lock"], "sciTech Review": "Adrian-Lock", "status": "SciTech Review", "title": "Migrate metadata jules_model_environment remainder of jules_surface to jules-shared"}, {"assignees": ["tom-j-h"], "code Review": "mo-marqh", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @cjohnson-pi \r\nCode Reviewer: @mo-marqh \r\n\r\nThis development is described on an old trac ticket: https://code.metoffice.gov.uk/trac/lfric_apps/ticket/682. This includes many links to the details of the scheme, as well as plots of results. In particular, https://wwwspice/~tim.payne/docs/4D-Var/PF/TL_BL_2025/TL_BL_2025.html has links to relevant VSDP documents.\r\n\r\nDevelopment was done by Tim Payne - I am simply taking the old fcm branch and creating this GitHub PR.\r\n\r\n- is blocked-by #163\r\n- closes #129\r\n\r\n**PLEASE NOTE** - this is a follow-on to #163. The branch was created from #163's branch in my fork, but I can't make a PR into that branch because then I would be stuck in my fork. So, to look at the actual changes relevant to this PR alone, look at the diff of this branch with #161's branch: https://github.com/tom-j-h/lfric_apps/compare/jelf_C224_adjoint_tests...tom-j-h:lfric_apps:tlad_boundary_layer\r\n\r\n**PLEASE ALSO NOTE** - #163 is blocked by #161 which is blocked by #156 which relies on https://github.com/MetOffice/lfric_core/pull/227, so when testing, I used this Core branch.\r\n\r\nThe change includes new files to be added to BIG_DATA_DIR - see paths to files in /data/users/tim.payne/ in changes.\r\n\r\nTest branch: https://github.com/tom-j-h/lfric_apps/tree/tlad_boundary_layer-test\r\n\r\n## Code Quality Checklist\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid understanding and enhance the readability of the code\r\n- [ ] My changes generate no new warnings\r\n- [ ] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n# Test Suite Results - lfric_apps - tlad_boundary_layer-developer/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [tlad_boundary_layer-developer/run1](https://cylchub/services/cylc-review/cycles/tom.hill/?suite=tlad_boundary_layer-developer%2Frun1) |\r\n| Suite User | tom.hill |\r\n| Workflow Start | 2026-01-26T12:26:56 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [tom-j-h/lfric_apps@tlad_boundary_layer-test](https://github.com/tom-j-h/lfric_apps/tree/tlad_boundary_layer-test) | False |\r\n| lfric_core | [tom-j-h/lfric_core@2a67d6b](https://github.com/tom-j-h/lfric_core/tree/2a67d6b) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n
\r\n:x: failed tasks - 9\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| check_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | failed |\r\n| check_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | failed |\r\n| check_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | failed |\r\n| check_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | failed |\r\n| check_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | failed |\r\n| kgo_groups_checker | failed |\r\n
\r\n:white_check_mark: succeeded tasks - 1102\r\n
\r\n:hourglass: waiting tasks - 2\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| housekeep_azspice | waiting |\r\n| housekeep_ex1a | waiting |\r\n
\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 182, "repository": "MetOffice/lfric_apps", "title": "Linear and adjoint boundary layer physics", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/182"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkQUoc", "labels": ["KGO", "macro", "cla-modified"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["cjohnson-pi", "ss421", "matthewrmshin"], "sciTech Review": "cjohnson-pi", "status": "SciTech Review", "title": "Linear and adjoint boundary layer physics"}, {"assignees": ["james-bruten-mo"], "code Review": "jennyhickson", "content": {"body": "In the CLA action the merge ref of a PR is currently compared against the Base SHA to see if the CONTRIBUTORS file has been modified in that branch. \r\n\r\n* The merge ref represents the latest version of the target branch merged with the PR branch (and only exists if there are no conflicts).\r\n* The Base SHA represents the latest commit shared between the target and PR branch (either the point the PR branch was created or the last time the PR branch was updated)\r\n\r\nThis is incorrect as the merge ref may well contain additional commits since the Base SHA, some of which might change the CONTRIBUTORS, resulting in incorrect failures. Instead, use the Base Ref value, which returns the name of the target branch, and therefore we'll be comparing against the latest commit.", "number": 60, "repository": "MetOffice/growss", "title": "update to use base_ref, not base_sha", "type": "PullRequest", "url": "https://github.com/MetOffice/growss/pull/60"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkQfaU", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/growss", "reviewers": ["jennyhickson"], "status": "Done", "title": "update to use base_ref, not base_sha"}, {"content": {"body": "The diff command requires and `origin/` as well as the base ref", "number": 61, "repository": "MetOffice/growss", "title": "Change diff point", "type": "PullRequest", "url": "https://github.com/MetOffice/growss/pull/61"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkQihQ", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/growss", "reviewers": ["jennyhickson"], "status": "Done", "title": "Change diff point"}, {"assignees": ["EdHone"], "code Review": "andrewcoughtrie", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: N/A\r\nCode Reviewer: @andrewcoughtrie \r\n\r\n\r\n\r\n\r\n\r\nMetOffice/lfric_core#233 removed an API option for the `lfric_xios_context_type`. This was almost entirely contained to the lfric_core repo, but there was a single usage of this option within lfric_apps. This PR removes it.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 183, "repository": "MetOffice/lfric_apps", "title": "Remove use of deprecated XIOS context API", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/183"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkQ3bY", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["andrewcoughtrie"], "status": "Done", "title": "Remove use of deprecated XIOS context API"}, {"assignees": ["james-bruten-mo"], "code Review": "t00sa", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @t00sa \r\n\r\n\r\n\r\nThis merges changes from MetOffice/lfric_apps#162 into this repo as they may be of use here in the future.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] This change has been tested appropriately (please describe)\r\n\r\nTested by running with the Apps rose-stem suite\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n\r\n", "number": 168, "repository": "MetOffice/SimSys_Scripts", "title": "Copy overwrite changes", "type": "PullRequest", "url": "https://github.com/MetOffice/SimSys_Scripts/pull/168"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkRKh0", "repository": "https://github.com/MetOffice/SimSys_Scripts", "reviewers": ["t00sa"], "status": "Done", "title": "Copy overwrite changes"}, {"code Review": "t00sa", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @MatthewHambley \r\nCode Reviewer: @t00sa \r\n\r\n\r\n\r\nAdds a first Fab build script for Skeleton. To keep this change minimal, it's command line only (i.e. no cylc integration, which can come later).\r\n\r\n\r\n\r\n- closes #240\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [ ] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [x] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](mailto:ToolsCollabDevTeam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 246, "repository": "MetOffice/lfric_core", "title": "240 add skeleton fab script", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/246"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkTZrw", "labels": ["cla-signed"], "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["MatthewHambley", "stevemullerworth", "mike-hobson"], "sciTech Review": "MatthewHambley", "status": "SciTech Review", "title": "240 add skeleton fab script"}, {"assignees": ["t00sa"], "code Review": "r-sharp", "content": {"body": "Update the rose-stem configuration files to simplify the process of running the test suite on the monsoon 3 partition of EXD.\r\n\r\n# PR Summary\r\n\r\nSci/Tech Reviewer: @james-bruten-mo \r\nCode Reviewer: @r-sharp \r\n\r\nSimilar to trac ticket [#779](https://code.metoffice.gov.uk/trac/lfric_apps/ticket/779) and metoffice/lfric_apps#166, this adds support for the test suites on monsoon 3 using github PATs to access the repositories.\r\n\r\n\r\n\r\n- closes #247 \r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [ ] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](mailto:ToolsCollabDevTeam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 248, "repository": "MetOffice/lfric_core", "title": "Add support for the test suite on monsoon 3", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/248"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkVTdU", "labels": ["cla-signed"], "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["mo-rickywong", "james-bruten-mo"], "sciTech Review": "james-bruten-mo", "status": "Changes Requested", "title": "Add support for the test suite on monsoon 3"}, {"assignees": ["caroduro", "mo-eddy"], "code Review": "ericaneininger", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @ericaneininger \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n- [ ] If editing `rose-meta/jules-shared` then have you supplied a linked UM PR?\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the JULES rose-stem suite\r\n- [ ] If shared files have been modified, I have run the UM and LFRic Apps rose\r\n stem suites\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n# Test Suite Results - jules - caroduro_jules/run2\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [caroduro_jules/run2](https://cylchub/services/cylc-review/cycles/james.bruten/?suite=caroduro_jules%2Frun2) |\r\n| Suite User | james.bruten |\r\n| Workflow Start | 2026-01-29T09:51:13 |\r\n| Groups Run | all |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| jules | [caroduro/jules@vn8.0_lsh_new_zw_lsh_full_hydraulic_connect](https://github.com/caroduro/jules/tree/vn8.0_lsh_new_zw_lsh_full_hydraulic_connect) | False |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 667\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## Approvals\r\n\r\nPlease request all relevant approvals. See the CodeOwners.txt file for section\r\nowners.\r\n\r\n### Technical\r\n\r\n- [ ] JULES Code Owner\r\n- [ ] OpenMP\r\n- [ ] River Routing\r\n- [ ] Rose Stem\r\n- [ ] Rose Metadata\r\n- [ ] Upgrade Macros\r\n\r\n### Scientific\r\n\r\n- [ ] Surface\r\n- [ ] Hydrology\r\n- [ ] Vegetation\r\n- [ ] Veg3 RED Demography\r\n- [ ] Biogechemistry\r\n- [ ] Biogenic fluxes\r\n- [ ] Fire\r\n- [ ] Lakes\r\n- [ ] Evaluation\r\n- [ ] Imogen\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 40, "repository": "MetOffice/jules", "title": "Vn8.0 lsh new zw lsh full hydraulic connect [issue 33]", "type": "PullRequest", "url": "https://github.com/MetOffice/jules/pull/40"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkVVbI", "labels": ["cla-signed"], "repository": "https://github.com/MetOffice/jules", "reviewers": [], "status": "In Progress", "title": "Vn8.0 lsh new zw lsh full hydraulic connect [issue 33]"}, {"assignees": ["mo-rickywong"], "code Review": "mo-lucy-gordon", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @mo-lucy-gordon \r\n\r\n\r\n\r\nAs part of work to remove configuration namelist access from module scope, configuration variables will need to be passed\r\nby argument. Configuration variables passed by argument to kernels is more involved, so this PR moves the **use _config_mod** from the Jacobian routines up to the to the kernel level in preparation of further changes.\r\n\r\n**Linked PRs**\r\nMetOffice/lfric_apps#184\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [ ] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\nRose test-suite Runs Green\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](mailto:ToolsCollabDevTeam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 249, "repository": "MetOffice/lfric_core", "title": "Remove module scope access of namelist variables by coordinate/native jacobian.", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/249"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkVjKo", "labels": ["cla-signed"], "repository": "https://github.com/MetOffice/lfric_core", "status": "In Progress", "title": "Remove module scope access of namelist variables by coordinate/native jacobian."}, {"assignees": ["mo-rickywong"], "code Review": "mo-lucy-gordon", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @mo-lucy-gordon \r\n\r\n\r\n\r\nIn preparation to remove configuration variables from module scope MetOffice/lfric_core#249 removes such practice in **coordinate/native Jacobian** routines to the kernel level. This PR is to modify calls to updated routines from kernels/unit-tests in LFRic_apps. Changes in this PR will be similar in nature, though touch a large number of files\r\n\r\n\r\nThis change doesn't change any KGOs and is an infrastructure change.\r\n\r\n**Linked PRs:**\r\nMetOffice/lfric_core#249\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [ ] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n# Test Suite Results - lfric_apps - AppsFloatJacobian/run9\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [AppsFloatJacobian/run9](https://cylchub/services/cylc-review/cycles/ricky.wong/?suite=AppsFloatJacobian%2Frun9) |\r\n| Suite User | ricky.wong |\r\n| Workflow Start | 2026-01-27T15:59:47 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [mo-rickywong/lfric_apps@AppsFloatJacobian](https://github.com/mo-rickywong/lfric_apps/tree/AppsFloatJacobian) | False |\r\n| lfric_core | [mo-rickywong/lfric_core@FloatJacobian](https://github.com/mo-rickywong/lfric_core/tree/FloatJacobian) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 1106\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](toolscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 184, "repository": "MetOffice/lfric_apps", "title": "Modify LFRic Apps files that call native/coordinate Jacobian files", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/184"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkVrEM", "labels": ["cla-signed"], "repository": "https://github.com/MetOffice/lfric_apps", "status": "In Progress", "title": "Modify LFRic Apps files that call native/coordinate Jacobian files"}, {"assignees": ["andrewcoughtrie"], "code Review": "EdHone", "content": {"body": "# PR Summary\r\n\r\nCreating a duplicate of `mpif90.mk` for the more modern `mpifort.mk`, this is only a short term solution to allow JEDI to use the more modern mpifort, this should also be considered when creating the fab build system.\r\n\r\nSci/Tech Reviewer: @mike-hobson \r\nCode Reviewer: @EdHone \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\ncloses #245 \r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n# Test Suite Results - lfric_core - PR251/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [PR251/run1](https://cylchub/services/cylc-review/cycles/andrew.coughtrie/?suite=PR251%2Frun1) |\r\n| Suite User | andrew.coughtrie |\r\n| Workflow Start | 2026-01-28T11:47:03 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| lfric_core | [andrewcoughtrie/lfric_core@mpifort_makefile](https://github.com/andrewcoughtrie/lfric_core/tree/mpifort_makefile) | False |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 372\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](mailto:ToolsCollabDevTeam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [x] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [x] Documentation is complete and accurate\r\n- [x] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n", "number": 251, "repository": "MetOffice/lfric_core", "title": "Mpifort makefile", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/251"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkV0Ck", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["stevemullerworth", "MatthewHambley", "mike-hobson", "mike-hobson", "EdHone", "EdHone"], "sciTech Review": "mike-hobson", "status": "Done", "title": "Mpifort makefile"}, {"assignees": ["james-bruten-mo"], "code Review": "ericaneininger", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @t00sa \r\nCode Reviewer: @ericaneininger \r\n\r\n\r\n\r\nInitial attempt at a script to merge different git branches for use in suites. The changes have been tested with the LFRic suites and with the lfric_apps rose-stem at `vn3.0`. If we think this is a good idea I'll also modify the UM suites to use this extraction method to maintain consistency.\r\n\r\nThese changes allow the `dependencies.yaml` file to specify multiple branches to merge together. This can be done by:\r\n\r\n```yaml\r\nlfric_apps:\r\n - source: git@github.com:MetOffice/lfric_apps.git\r\n ref: 2025.12.1\r\n - source: git@github.com:james-bruten-mo/lfric_apps.git\r\n ref: test_merge_branch\r\n - source: git@github.com:james-bruten-mo/lfric_apps.git\r\n ref: test_branch2\r\n - source: git@github.com:james-bruten-mo/lfric_apps.git\r\n ref: conflic_apps\r\n```\r\n\r\nwhich will clone the first source and then merge each subsequent source into this. It's currently setup to ignore merge conflicts in `rose-stem` and `dependencies.yaml` as these files aren't important for running scientific suites.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] This change has been tested appropriately (please describe)\r\n\r\nLFRic standalone suites and lfric_apps rose-stem at vn3.0\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n\r\n", "number": 169, "repository": "MetOffice/SimSys_Scripts", "title": "Suite merge script", "type": "PullRequest", "url": "https://github.com/MetOffice/SimSys_Scripts/pull/169"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkWDiA", "repository": "https://github.com/MetOffice/SimSys_Scripts", "reviewers": ["t00sa", "t00sa", "ericaneininger", "cameronbateman-mo"], "sciTech Review": "t00sa", "status": "Changes Requested", "title": "Suite merge script"}, {"assignees": ["yaswant"], "code Review": "jennyhickson", "content": {"body": "# PR Summary\r\n\r\nCode Reviewer: @jennyhickson \r\n\r\n\r\n\r\nAdd list of Simulation Systems repositories to README for easy access.\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] I have locally built the documentation successfully, and the output of changed sections is as expected\r\n\r\n# Code Review\r\n\r\n- [x] The changes are coherent and valid\r\n", "number": 565, "repository": "MetOffice/simulation-systems", "title": "Update README to add SimSys repository list", "type": "PullRequest", "url": "https://github.com/MetOffice/simulation-systems/pull/565"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkWsGE", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/simulation-systems", "reviewers": ["jennyhickson"], "status": "Approved", "title": "Update README to add SimSys repository list"}, {"assignees": ["tommbendall"], "code Review": "ericaneininger", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @thomasmelvin \r\nCode Reviewer: @ericaneininger \r\n\r\n\r\n\r\n\r\n\r\nThis is a simple PR, which sets the rose-stem default for `log_to_rank_zero` to be `.true.`, for all apps.\r\n\r\nThis option writes log files only on the first rank, rather than on all -- turning on the option that was added in https://code.metoffice.gov.uk/trac/lfric/ticket/4577. Logging on all ranks for all tests in the test-suite creates thousands of unused files, using unnecessary energy and data when these files are left behind. It would be better to only turn this option on when needing to debug.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n# Test Suite Results - lfric_apps - log_rank_zero/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [log_rank_zero/run1](https://cylchub/services/cylc-review/cycles/thomas.bendall/?suite=log_rank_zero%2Frun1) |\r\n| Suite User | thomas.bendall |\r\n| Workflow Start | 2026-01-28T08:53:36 |\r\n| Groups Run | suite_default |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [tommbendall/lfric_apps@TBendall/LogRankZero](https://github.com/tommbendall/lfric_apps/tree/TBendall/LogRankZero) | False |\r\n| lfric_core | [MetOffice/lfric_core@2025.12.1](https://github.com/MetOffice/lfric_core/tree/2025.12.1) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 1106\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](toolscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 186, "repository": "MetOffice/lfric_apps", "title": "Log to rank zero only by default", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/186"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkY2Ow", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["matthewrmshin", "ss421", "thomasmelvin", "ericaneininger"], "sciTech Review": "thomasmelvin", "status": "Code Review", "title": "Log to rank zero only by default"}, {"assignees": ["tommbendall"], "code Review": "mo-alistairp", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @jameskent-metoffice \r\nCode Reviewer: @mo-alistairp \r\n\r\n\r\n\r\n\r\n\r\nThis is a simple change which updates one of the model's most common error messages, removing a typo and improving the instructions for model users.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n# Test Suite Results - lfric_apps - better_lipschitz_error/run2\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [better_lipschitz_error/run2](https://cylchub/services/cylc-review/cycles/thomas.bendall/?suite=better_lipschitz_error%2Frun2) |\r\n| Suite User | thomas.bendall |\r\n| Workflow Start | 2026-01-28T10:10:12 |\r\n| Groups Run | suite_default |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [tommbendall/lfric_apps@TBendall/BetterLipschitzError](https://github.com/tommbendall/lfric_apps/tree/TBendall/BetterLipschitzError) | False |\r\n| lfric_core | [MetOffice/lfric_core@2025.12.1](https://github.com/MetOffice/lfric_core/tree/2025.12.1) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 1106\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](toolscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [x] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [x] Documentation is complete and accurate\r\n- [x] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n", "number": 187, "repository": "MetOffice/lfric_apps", "title": "Improve negative mass error message", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/187"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkZBZY", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["jameskent-metoffice", "mo-alistairp"], "sciTech Review": "jameskent-metoffice", "status": "Approved", "title": "Improve negative mass error message"}, {"assignees": ["jennyhickson"], "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: \r\n\r\n\r\n\r\n\r\nAll code owners have been moved from codeowners.txt to CODEOWNERS. All codeowners who wish to be notified about changes are \"live\", while others and deputies are in comments so that this one file provides a complete picture of the codeowner community. \r\n\r\nAll codeowners have been added to SimSysScienceReviewers so they have appropriate access to the repository. \r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid understanding and enhance the readability of the code\r\n- [ ] My changes generate no new warnings\r\n- [ ] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](toolscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 188, "repository": "MetOffice/lfric_apps", "title": "Add all codeowners to CODEOWNERS file", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/188"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkZhxs", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "status": "In Progress", "title": "Add all codeowners to CODEOWNERS file"}, {"assignees": ["andrewcoughtrie"], "code Review": "james-bruten-mo", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @james-bruten-mo \r\n\r\n\r\n\r\n\r\n\r\nJust a small change to get the diff in code review to syntax highlight Fortran files correctly. \r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](mailto:ToolsCollabDevTeam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 253, "repository": "MetOffice/lfric_core", "title": "Change gitattributes diff to fortran-free-form", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/253"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkaPyE", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["james-bruten-mo"], "status": "Done", "title": "Change gitattributes diff to fortran-free-form"}, {"assignees": ["andrewcoughtrie"], "code Review": "james-bruten-mo", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @james-bruten-mo \r\n\r\n\r\n\r\n\r\n\r\nUpdated the `.gitattributes` file to have the text diff as `fortran-free-form` for all Fortran files.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](toolscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 190, "repository": "MetOffice/lfric_apps", "title": "Update gitattributes diff to fortran-free-form", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/190"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkahf8", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["james-bruten-mo"], "status": "Done", "title": "Update gitattributes diff to fortran-free-form"}, {"assignees": ["christophermaynard", "alanjhewitt"], "code Review": "Pierre-siddall", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @Pierre-siddall \r\n\r\n\r\n\r\n\r\n\r\n**Developments included in this ticket**\r\n\r\n**RADAER FULL DOMAIN**\r\n\r\nReinitialise um_size: Set um_size to the number of horizontal cells before invoking the RADAER kernel, and reset it to 1 after the invocation.\r\n\r\nSwitch operation mode: Change the mode from column to domain in radaer_kernal_mod.F90 so that Psyclone can recognise the update, automatically generate the radaer_alg_mod_psy.f90 file, and provide suitable arguments for all subroutines. This enables the full horizontal and vertical domain data transfer to the RADAER code.\r\n\r\nUpdate variable dimensions: Adjust variable sizes in radaer_kernal_mod.F90 to accept whole-domain data. A do loop was then introduced to initialise variables passed into key RADAER subroutines and to store the computed results, that involved a change of the data structure extents and associated loops from an \"I-first\" to a \"K-first\" approach.\r\n\r\n**Bug fix**\r\n\r\nBoth the p_theta_levels and t_theta_levels pass the wrong number of dimensions to ukca_radaer_prepare.\r\n\r\n**Rafactor radaer kernel**\r\n\r\nIn order to limit the number of times we switch from I-first to K-first addressing, I have made a UKCA side interface module that calls all of the UKCA side science code. I also reordered the sequence of I-first to K-first addressing.\r\n\r\n**Segmentation**\r\n\r\nAll of the arrays passed to the UKCA side are now allocatable, so that correct segments can be passed with each iteration of the segmentation loop. The order of deallocation is the reverse order of allocation to prevent memory striding.\r\n\r\nThe I-first to K-first addressing changes from [#841](https://code.metoffice.gov.uk/trac/lfric_apps/ticket/841) full domain have been refactored so that the memory points to the part of memory associated with the segment for each iteration of the segment loop. This was complicated and is difficulty to describe in words, but I think will make sense when looking at the code change.\r\n\r\nFor short wave only, radaer_band_average does not need to be called for nightside segments, and this is a considerable cost save. We determine if any of the columns within each segment are on the dayside or not and pass that information to the UKCA interface code. This logical is calculated inside the segmentation loop.\r\n\r\nSimilirly, as the AOD diagnostics are optional, we only have to call the diagnostic modules if they are requested. I gather this information outside the segmentation loop.\r\n\r\n- linked MetOffice/UKCA#21\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid understanding and enhance the readability of the code\r\n- [ ] My changes generate no new warnings\r\n- [ ] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](toolscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 191, "repository": "MetOffice/lfric_apps", "title": "Radaer seg", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/191"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkahss", "labels": ["Linked UKCA"], "repository": "https://github.com/MetOffice/lfric_apps", "status": "In Progress", "title": "Radaer seg"}, {"assignees": ["christophermaynard", "alanjhewitt"], "code Review": "Pierre-siddall", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @Pierre-siddall \r\n\r\n\r\n\r\n\r\n\r\nAdded interface module to allow segmented chunks to be called from LFRic Apps to RADAER.\r\n\r\n- linked MetOffice/lfric_apps#191\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's style guidelines\r\n- [ ] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the UKCA rose-stem suite\r\n- [ ] If shared files have been modified, I have run the UM and LFRic Apps rose\r\n stem suites\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 21, "repository": "MetOffice/ukca", "title": "Segmetation in calls from lfric_apps to radaer", "type": "PullRequest", "url": "https://github.com/MetOffice/ukca/pull/21"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkangk", "labels": ["Linked Apps", "cla-signed"], "repository": "https://github.com/MetOffice/ukca", "status": "In Progress", "title": "Segmetation in calls from lfric_apps to radaer"}, {"assignees": ["stevemullerworth"], "code Review": "mo-lottieturner", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @tommbendall \r\nCode Reviewer: @mo-lottieturner \r\n\r\n\r\n\r\n\r\n\r\nThe `rhcrit` field is an evolving field that is an input to glomap aerosol. Currently, it is not written to the checkpoint restart file resulting in some runs losing bit comparison across a checkpoint-restart point relative to an equivalent longer run. This failure ought to have been picked up by the nrun-crun tests, but the existing tests run only one-timestep continuation runs, and the main prognostics written to the checksum file are unaffected till the second timestep.\r\n\r\nThere are two possible solutions: first, `rhcrit` could be written to and read from the checkpoint file. Second, the value of `rhcrit` can be taken from the configuration file rather than from the field. According to @iboutle, this is what is done in the UM. Therefore, this solution takes the second approach.\r\n\r\nThe PR includes expected KGO changes.\r\n\r\nPSyclone now includes the capability to pass arrays to kernels, but lfric_apps does not yet use a version of PSyclone with this functionality. Issue #194 opened to deal with this when the time comes.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\nUnfortunately, one of the tasks timed-out when rerunning to check updated KGOs. There will inevitably be a further KGO update once this branch is ready to go on, so hopefully the PR can progress.\r\n\r\n### trac.log\r\n\r\n# Test Suite Results - lfric_apps - rhcrit_forpr/run2\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [rhcrit_forpr/run2](https://cylchub/services/cylc-review/cycles/steve.mullerworth/?suite=rhcrit_forpr%2Frun2) |\r\n| Suite User | steve.mullerworth |\r\n| Workflow Start | 2026-01-28T12:29:24 |\r\n| Groups Run | all |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [stevemullerworth/lfric_apps@nruncrun](https://github.com/stevemullerworth/lfric_apps/tree/nruncrun) | False |\r\n| lfric_core | [MetOffice/lfric_core@2025.12.1](https://github.com/MetOffice/lfric_core/tree/2025.12.1) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n
\r\n:x: failed tasks - 1\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| run_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | failed |\r\n
\r\n:white_check_mark: succeeded tasks - 1451\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](toolscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 193, "repository": "MetOffice/lfric_apps", "title": "Replace model rh_crit with fixed value from config in glomap_aerosol", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/193"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkazA0", "labels": ["KGO", "cla-signed"], "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["tommbendall", "mo-lottieturner"], "sciTech Review": "tommbendall", "status": "Code Review", "title": "Replace model rh_crit with fixed value from config in glomap_aerosol"}, {"assignees": ["tommbendall"], "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: \r\n\r\n\r\n\r\n\r\n\r\nSome kernels may break bit-reproducibility with threading. These kernels all WRITE to W2 fields, but include a check along the lines of:\r\n```\r\n! only do calculation if not already done\r\nif (du_inc(map_w2(df)) == 0) then\r\n ... \r\nend if\r\n```\r\nThis is to prevent both columns trying to write to the same face (and is an optimisation in that it reduces duplication of computations). This is not safe for threading because there is no guarantee which thread will column will write to the face first. We seem to get away with this at the moment because our current tests ensure that both columns perform the same calculation to the bit level.\r\n\r\nThe solution here is to use the face_selector objects to ensure that each face is only written to by a specified column.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid understanding and enhance the readability of the code\r\n- [ ] My changes generate no new warnings\r\n- [ ] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](toolscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 195, "repository": "MetOffice/lfric_apps", "title": "Some kernels that write to W2 fields aren't safe for threading", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/195"}, "id": "PVTI_lADOAGrG5M4A_OAXzgka9qo", "labels": ["bug", "KGO", "cla-signed"], "repository": "https://github.com/MetOffice/lfric_apps", "status": "In Progress", "title": "Some kernels that write to W2 fields aren't safe for threading"}, {"assignees": ["mike-hobson"], "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: None required\r\nCode Reviewer: \r\n\r\nI noted three deficiencies with the partition unit tests:\r\n1. There are no tests of uneven partitions. The single panel partitioner unit tests use an 8x8 full domain mesh. If this is partitioned over 3 ranks, it should result in partitions of size 3x8, 3x8 and 2x8 (i.e. uneven). Add such tests to the biperiodic, planar and x- plus y- trench mesh partitioner tests.\r\n2. There is no test of the parallel cubedsphere partitioner. This was omitted because it is slow to run from the command line. Whilst that is true (it is slower than all the other infrastructure unit tests combined), this is the partitioner used for almost all global model runs - so I have added it in (and we'll take the hit on runtime).\r\n3. The current test suite runs the unit tests on one core - even though the infrastructure unit tests are parallel. The infrastructure unit tests take two and a half minutes to complete. Giving them the correct number of cores to run on drops this to 8 seconds. There is no fine-grained control of resources for the unit tests, so after discussions with SSD, we decided it was fine for all \"technical tests\" (integration- and unit-tests) to run on multiple cores. The Met Office appears to have its own overrides for this setting, but I have also changed the system default (as I can see no reason for anyone wanting to run a parallel test on a single core)\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n# Test Suite Results - lfric_core - partition_test/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [partition_test/run1](https://cylchub/services/cylc-review/cycles/mike.hobson/?suite=partition_test%2Frun1) |\r\n| Suite User | mike.hobson |\r\n| Workflow Start | 2026-01-29T06:08:00 |\r\n| Groups Run | all |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| lfric_core | [mike-hobson/lfric_core@add_uneven_partition_test](https://github.com/mike-hobson/lfric_core/tree/add_uneven_partition_test) | False |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 372\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](mailto:ToolsCollabDevTeam@metoffice.gov.uk)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 254, "repository": "MetOffice/lfric_core", "title": "Improve partitioner unit tests", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/254"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkdKkg", "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["stevemullerworth", "MatthewHambley", "james-bruten-mo", "mo-rickywong"], "status": "In Progress", "title": "Improve partitioner unit tests"}, {"assignees": ["james-bruten-mo"], "code Review": "t00sa", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @t00sa \r\n\r\n\r\n\r\nInstead of using a hard-coded list of ignored files when rsyncing, generate a list of ignored files using `git status --ignored -s` and use this instead.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] This change has been tested appropriately (please describe)\r\n\r\nTested by running against lfric_apps vn3.0 test suite\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [x] Related Issues have been properly linked and addressed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [x] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n\r\n", "number": 170, "repository": "MetOffice/SimSys_Scripts", "title": "Git ignore", "type": "PullRequest", "url": "https://github.com/MetOffice/SimSys_Scripts/pull/170"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkdehc", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/SimSys_Scripts", "reviewers": ["t00sa"], "status": "Done", "title": "Git ignore"}, {"assignees": ["thomasmelvin"], "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: \r\n\r\n\r\n\r\n\r\n\r\nCore branch to allow the use of the multigrid preconditioner on the mixed system\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid understanding and enhance the readability of the code\r\n- [ ] My changes generate no new warnings\r\n- [ ] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](mailto:ToolsCollabDevTeam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 255, "repository": "MetOffice/lfric_core", "title": "Mixed multigrid", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/255"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkdgpY", "labels": ["cla-required"], "repository": "https://github.com/MetOffice/lfric_core", "status": "In Progress", "title": "Mixed multigrid"}, {"assignees": ["thomasmelvin"], "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: \r\n\r\n\r\n\r\n\r\n\r\nAllow the multigrid preconditioner to be used on the mixed system of equations\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid understanding and enhance the readability of the code\r\n- [ ] My changes generate no new warnings\r\n- [ ] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](toolscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 197, "repository": "MetOffice/lfric_apps", "title": "Mixed multigrid", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/197"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkdhdo", "labels": ["cla-required"], "milestone": {"description": "Code Review deadline is 25th September 2026 (SciTech review to be completed by this date)", "dueOn": "2026-11-04T00:00:00Z", "title": "Autumn 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "status": "In Progress", "title": "Mixed multigrid"}, {"assignees": ["andrewcoughtrie"], "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: \r\n\r\n\r\n\r\n\r\n\r\nThis change sets the PR and CI documentation building to only happen when files in the documentation directory are changed or any of the workflow files. I believe leaving the running to happen if ANY of the workflow yaml files are changed is a safer option than trying to specify specific ones.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](mailto:ToolsCollabDevTeam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 256, "repository": "MetOffice/lfric_core", "title": "Only build docs when docs files changed", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/256"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkdxEk", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["yaswant"], "status": "In Progress", "title": "Only build docs when docs files changed"}, {"assignees": ["andrewcoughtrie"], "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: Not Required \r\nCode Reviewer: \r\n\r\n\r\n\r\n\r\n\r\nThis change sets the PR and CI documentation building to only happen when files in the documentation directory are changed or any of the workflow files. I believe leaving the running to happen if ANY of the workflow yaml files are changed is a safer option than trying to specify specific ones.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](toolscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 198, "repository": "MetOffice/lfric_apps", "title": "Only build docs when docs files changed", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/198"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkdzlM", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "status": "In Progress", "title": "Only build docs when docs files changed"}, {"assignees": ["Pierre-siddall"], "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: \r\n\r\n\r\n\r\n\r\n\r\nThis PR unifies the linting of fortran across the repository by adding a fortran linter to the CI/CD pipeline and adding a fortitude.toml file to configure the fortran quality standards across LFRic apps. \r\n\r\n\r\n\r\n\r\n\r\ncloses #199 \r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](toolscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 200, "repository": "MetOffice/lfric_apps", "title": "Add fortran linting workflow", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/200"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkd8pA", "labels": ["enhancement", "cla-signed"], "repository": "https://github.com/MetOffice/lfric_apps", "status": "In Progress", "title": "Add fortran linting workflow"}, {"assignees": ["Pierre-siddall"], "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: \r\n\r\n\r\n\r\n\r\n\r\nThis PR unifies the linting of fortran across the repository by adding a fortran linter to the CI/CD pipeline and adding a fortitude.toml file to configure the fortran quality standards across LFRic apps. \r\n\r\n\r\n\r\n\r\n\r\ncloses #257 \r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](mailto:ToolsCollabDevTeam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 258, "repository": "MetOffice/lfric_core", "title": "Add fortran linter", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/258"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkd97A", "labels": ["cla-signed"], "repository": "https://github.com/MetOffice/lfric_core", "status": "In Progress", "title": "Add fortran linter"}, {"assignees": ["jennyhickson"], "code Review": "james-bruten-mo", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @james-bruten-mo \r\n\r\n\r\n\r\n\r\n\r\nI've pulled the code for interacting with a github project into its own module as I would like to use this for a new script too. I've refactored workload.py to use this, and modified the interface to hopefully make it a little more generic. I've also removed the hardcoded list of repositories from workload.py, instead now including columns in the SSD table for all repos that have PRs in the project so that everything is included. This is lots at the moment as we had some wide-reaching workflow updates, but hopefully in the future this will actually reduce the size of the table to not include empty columns. \r\n\r\nI've also updated the repository list in the manage milestones list to be more complete and fixed a bug with \"'s. \r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [ ] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid understanding and enhance the readability of the code\r\n- [ ] My changes generate no new warnings\r\n- [ ] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] This change has been tested appropriately (please describe)\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n\r\n", "number": 171, "repository": "MetOffice/SimSys_Scripts", "title": "Refactor workload.py", "type": "PullRequest", "url": "https://github.com/MetOffice/SimSys_Scripts/pull/171"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkeNkQ", "repository": "https://github.com/MetOffice/SimSys_Scripts", "reviewers": ["james-bruten-mo"], "status": "Code Review", "title": "Refactor workload.py"}, {"assignees": ["maggiehendry"], "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's style guidelines\r\n- [ ] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n- [ ] If editing `rose-meta/jules-shared` then have you supplied a linked UM PR?\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the JULES rose-stem suite\r\n- [ ] If shared files have been modified, I have run the UM and LFRic Apps rose\r\n stem suites\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## Approvals\r\n\r\nPlease request all relevant approvals. See the CodeOwners.txt file for section\r\nowners.\r\n\r\n### Technical\r\n\r\n- [ ] JULES Code Owner\r\n- [ ] OpenMP\r\n- [ ] River Routing\r\n- [ ] Rose Stem\r\n- [ ] Rose Metadata\r\n- [ ] Upgrade Macros\r\n\r\n### Scientific\r\n\r\n- [ ] Surface\r\n- [ ] Hydrology\r\n- [ ] Vegetation\r\n- [ ] Veg3 RED Demography\r\n- [ ] Biogechemistry\r\n- [ ] Biogenic fluxes\r\n- [ ] Fire\r\n- [ ] Lakes\r\n- [ ] Evaluation\r\n- [ ] Imogen\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 42, "repository": "MetOffice/jules", "title": "Migrate jules_pftparm metadata to jules-shared", "type": "PullRequest", "url": "https://github.com/MetOffice/jules/pull/42"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkeuwo", "labels": ["cla-signed"], "repository": "https://github.com/MetOffice/jules", "status": "In Progress", "title": "Migrate jules_pftparm metadata to jules-shared"}], "totalCount": 223} \ No newline at end of file From 0c2ab39c6a27388d6282401489f21f7d0492585c Mon Sep 17 00:00:00 2001 From: jennyhickson <61183013+jennyhickson@users.noreply.github.com> Date: Mon, 2 Feb 2026 08:54:48 +0000 Subject: [PATCH 11/18] CR suggestions --- gh_review_project/review_project.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/gh_review_project/review_project.py b/gh_review_project/review_project.py index 16f0d851..f4ad7f36 100644 --- a/gh_review_project/review_project.py +++ b/gh_review_project/review_project.py @@ -8,10 +8,13 @@ Class and functions for interacting with the Simulation Systems Review Tracker Project. """ +from __future__ import annotations import json import subprocess from pathlib import Path +import shlex +from collections import defaultdict class ProjectData: @@ -28,12 +31,12 @@ def __init__(self, data: dict, test: bool = False): self.test = test @classmethod - def from_github(cls, capture: bool = False, file: Path = None) -> "ProjectData": + def from_github(cls, capture: bool = False, file: Path = None) -> ProjectData: """ Retrieve data from GitHub API and initialise the class. """ command = "gh project item-list 376 -L 500 --owner MetOffice --format json" - output = subprocess.run(command.split(), capture_output=True, timeout=180) + output = subprocess.run(shlex.split(command), capture_output=True, timeout=180) if output.returncode: raise RuntimeError( "Error fetching GitHub Project data: \n " + output.stderr.decode() @@ -53,7 +56,7 @@ def from_github(cls, capture: bool = False, file: Path = None) -> "ProjectData": return cls(data, test=False) @classmethod - def from_file(cls, file: Path) -> "ProjectData": + def from_file(cls, file: Path) -> ProjectData: """ Retrieve data from test file and initialise the class. """ @@ -70,7 +73,7 @@ def _extract_data(cls, raw_data: dict) -> dict: store it in a dictionary keyed by repository. """ - data = {} + data = defaultdict(list) for pr in raw_data["items"]: pull_request = {} @@ -104,10 +107,7 @@ def _extract_data(cls, raw_data: dict) -> dict: pull_request["scitech review"] = None repo = pr["content"]["repository"].replace("MetOffice/", "") - if repo in data: - data[repo].append(pull_request) - else: - data[repo] = [pull_request] + data[repo].append(pull_request) return data From de0bc74ee802882e0c3f6106bd82e4cc544964cc Mon Sep 17 00:00:00 2001 From: jennyhickson <61183013+jennyhickson@users.noreply.github.com> Date: Mon, 2 Feb 2026 14:26:48 +0000 Subject: [PATCH 12/18] functional --- gh_review_project/finish_milestone.py | 65 ++++++++------ gh_review_project/review_project.py | 118 +++++++++++++++++--------- 2 files changed, 117 insertions(+), 66 deletions(-) diff --git a/gh_review_project/finish_milestone.py b/gh_review_project/finish_milestone.py index 3cf9d444..b8342ca7 100644 --- a/gh_review_project/finish_milestone.py +++ b/gh_review_project/finish_milestone.py @@ -38,14 +38,14 @@ def still_open(open_prs: dict, current_milestone: str) -> int: for repo in open_prs: print(f"{repo} \n{'-'*len(repo)}") for pr in open_prs[repo]: - print(f"{pr['status']: <18} #{pr['number']: <5} {pr['title']}") + print(f"{pr.status: <18} #{pr.number: <5} {pr.title}") count = len(open_prs[repo]) print(f"-> {count} open pull request(s) in {repo} \n") total += count if total == 0: - print("No open pull requests for this milestone \n") + print(f"No open pull requests for {current_milestone} \n") return total @@ -66,7 +66,7 @@ def closed_other(closed_prs: dict, current_milestone: str) -> int: for repo in closed_prs[milestone]: print(f"{repo} \n{'-' * len(repo)}") for pr in closed_prs[milestone][repo]: - print(f"#{pr['number'] : <5} {pr['title']}") + print(f"#{pr.number : <5} {pr.title}") count = len(closed_prs[milestone][repo]) print( @@ -75,12 +75,20 @@ def closed_other(closed_prs: dict, current_milestone: str) -> int: total += count if total == 0: - print("No closed pull requests not at this milestone \n") + print(f"No closed pull requests not for {current_milestone} \n") return total def check_ready(open_prs: dict, closed_prs: dict, milestone: str) -> None: + """ + Check if the milestone is ready to be closed by confirming that: + * all pull requests for this milestone have been completed + * all closed pull requests in the project are in this milestone. + + Give the user the choice to continue regardless since there may be valid + exceptions. + """ total_open = still_open(open_prs[milestone], milestone) total_other = closed_other(closed_prs, milestone) @@ -90,14 +98,18 @@ def check_ready(open_prs: dict, closed_prs: dict, milestone: str) -> None: f"{total_open} open pull request(s) in {milestone} and " f"{total_other} closed pull request(s) not in {milestone}." ) - # cont = input("Would you like to continue with closing this milestone? (y/n) ") - # - # if cont == "n": - # exit(0) - # elif cont != "y": - # print("Unrecognised input, please select y or n") + cont = input("Would you like to continue with closing this milestone? (y/n) ") + + if cont == "n": + exit(0) + elif cont != "y": + print("Unrecognised input, please select y or n") + def report(closed: dict, milestone: str) -> None: + """ + Report on the pull requests completed in this milestone + """ print_banner(f"Pull requests completed for {milestone}") @@ -105,17 +117,6 @@ def report(closed: dict, milestone: str) -> None: print(f"{repo: <20} {len(closed[repo]): >3} pull requests") -def archive(closed_prs: dict, dryrun: bool) -> None: - - print_banner("Archiving all completed pull requests for this milestone") - - #gh project item-archive [] [flags] - - for repo in closed_prs: - for pr in closed_prs[repo]: - if dryrun: - print(f"Archiving #{pr['number']} in {repo}") - def parse_args(): """ Read command line args @@ -142,14 +143,14 @@ def parse_args(): parser.add_argument( "--file", default=testfile, - help="Filepath to test data for either capture the project status, " + help="Filepath to test data for either capturing the project status, " "or use as input data.", ) parser.add_argument( "--dry", action="store_true", help="Dry run. Print commands, don't action them. Always true when " - "running with test data." + "running with test data.", ) args = parser.parse_args() @@ -163,8 +164,11 @@ def parse_args(): return args -def main(milestone: str, test: bool, capture_project: bool, file: Path, dry: bool) -> None: +def main( + milestone: str, test: bool, capture_project: bool, file: Path, dry: bool +) -> None: + # Get milestone data if test: data = ProjectData.from_file(file) else: @@ -173,13 +177,20 @@ def main(milestone: str, test: bool, capture_project: bool, file: Path, dry: boo open_prs_by_milestones = data.get_by_milestone("open") closed_prs_by_milestones = data.get_by_milestone("closed") + # Process data and report on status check_ready(open_prs_by_milestones, closed_prs_by_milestones, milestone) - report(closed_prs_by_milestones[milestone], milestone) - archive(closed_prs_by_milestones[milestone], dry) + # Archive pull requests at the milestone + print_banner(f"Archiving Milestone {milestone}") + data.archive_milestone(milestone, dry_run=dry) - print("pause") + # Close milestones + # TODO: run this command from here, rather than prompting user. Leaving + # like this until script feels stable. + print_banner("Milestone Completed in Simulation Systems Review Tracker project") + print("Run this command to close the milestone in all repositories:") + print(f'./sbin/gh_manage_milestones -t "{milestone}" -m close') if __name__ == "__main__": diff --git a/gh_review_project/review_project.py b/gh_review_project/review_project.py index c6fd6dbc..75a04c8d 100644 --- a/gh_review_project/review_project.py +++ b/gh_review_project/review_project.py @@ -5,7 +5,7 @@ # ----------------------------------------------------------------------------- """ -Class and functions for interacting with the Simulation Systems Review Tracker +Classes and functions for interacting with the Simulation Systems Review Tracker Project. """ @@ -14,6 +14,18 @@ from pathlib import Path from collections import defaultdict +project_id = 376 +project_owner = "MetOffice" + + +def run_command(command: str) -> subprocess.CompletedProcess: + output = subprocess.run(command.split(), capture_output=True, timeout=180) + + if output.returncode: + raise RuntimeError(output.stderr.decode()) + + return output + class ProjectData: """ @@ -42,12 +54,8 @@ def from_github(cls, capture: bool = False, file: Path = None) -> "ProjectData": """ Retrieve data from GitHub API and initialise the class. """ - command = "gh project item-list 376 -L 500 --owner MetOffice --format json" - output = subprocess.run(command.split(), capture_output=True, timeout=180) - if output.returncode: - raise RuntimeError( - "Error fetching GitHub Project data: \n " + output.stderr.decode() - ) + command = f"gh project item-list {project_id} -L 500 --owner {project_owner} --format json" + output = run_command(command) raw_data = json.loads(output.stdout) @@ -74,50 +82,40 @@ def from_file(cls, file: Path) -> "ProjectData": return cls(data=data, test=True, milestones=milestones) @classmethod - def _extract_data(cls, raw_data: dict) -> dict: + def _extract_data(cls, raw_data: dict) -> (dict, list): """ Extract useful information from the raw data and store it in a dictionary keyed by repository. """ data = defaultdict(list) - milestones = set() + milestones = set("None") for pr in raw_data["items"]: - pull_request = {} - pull_request["id"] = pr["id"] - pull_request["title"] = pr["content"]["title"] - pull_request["number"] = pr["content"]["number"] + pull_request = PullRequest( + id=pr["id"], + number=pr["content"]["number"], + title=pr["content"]["title"], + ) if "status" in pr: - pull_request["status"] = pr["status"] - else: - pull_request["status"] = None + pull_request.status = pr["status"] if "milestone" in pr: - pull_request["milestone"] = pr["milestone"]["title"] - else: - pull_request["milestone"] = "None" - - milestones.add(pull_request["milestone"]) + pull_request.milestone = pr["milestone"]["title"] + milestones.add(pull_request.milestone) if "assignee" in pr: - pull_request["assignee"] = pr["assignees"] - else: - pull_request["assignee"] = None + pull_request.assignee = pr["assignees"] if "code Review" in pr: - pull_request["code review"] = pr["code Review"] - else: - pull_request["code review"] = None + pull_request.codeReview = pr["code Review"] if "sciTech Review" in pr: - pull_request["scitech review"] = pr["sciTech Review"] - else: - pull_request["scitech review"] = None + pull_request.scitechReview = pr["sciTech Review"] - repo = pr["content"]["repository"].replace("MetOffice/", "") - data[repo].append(pull_request) + pull_request.repo = pr["content"]["repository"].replace("MetOffice/", "") + data[pull_request.repo].append(pull_request) return data, milestones @@ -136,11 +134,11 @@ def get_reviewers_for_repo(self, repo: str) -> list: print("\n=== Reviewers for " + repo) for pr in pull_requests: - sr = pr["scitech review"] + sr = pr.scitechReview if sr: reviewers.append(sr) - cr = pr["code review"] + cr = pr.codeReview if cr: reviewers.append(cr) @@ -156,7 +154,7 @@ def get_reviewers_for_repo(self, repo: str) -> list: f"{sr: <18}", "Code:", f"{cr: <18}", - pr["title"], + pr.title, ) return reviewers @@ -180,14 +178,56 @@ def get_by_milestone(self, status: str = "all") -> dict: for repo in self.data: for pr in self.data[repo]: if ( - pr["status"] == status + pr.status == status or status == "all" - or (status == "open" and pr["status"] in self.open_states) - or (status == "closed" and pr["status"] not in self.open_states) + or (status == "open" and pr.status in self.open_states) + or (status == "closed" and pr.status not in self.open_states) ): - milestone = pr["milestone"] + milestone = pr.milestone if not milestone_data[milestone]: milestone_data[milestone] = defaultdict(list) milestone_data[milestone][repo].append(pr) return milestone_data + + def archive_milestone(self, milestone: str, dry_run: bool = False) -> None: + + print(f"Archiving all completed pull requests for {milestone}") + + dry_run = dry_run | self.test # if test data, or a dryrun, then dummy commands + + closed_prs = self.get_by_milestone(status="closed")[milestone] + for repo in closed_prs: + for pr in closed_prs[repo]: + pr.archive(dry_run) + + +class PullRequest: + + def __init__(self, id: str = None, number: str = None, title: str = None): + self.id = id + self.number = number + self.title = title + + self.repo = None + self.status = None + self.milestone = "None" + self.assignee = None + self.scitechReview = None + self.codeReview = None + + def archive(self, dry_run: bool = False): + """ + Archive this pull request from the project. + + dry_run: If true, print the command used rather than archiving. + """ + + command = f"gh project item-archive {project_id} --owner {project_owner} --id {self.id}" + message = f"Archiving #{self.number} in {self.repo}" + + if dry_run: + print(f"[DRY RUN] {message: <40} {command}") + else: + print(message) + run_command(command) From 8aee5950aec6ea39a3a613e793fda8224fa04a9d Mon Sep 17 00:00:00 2001 From: jennyhickson <61183013+jennyhickson@users.noreply.github.com> Date: Mon, 2 Feb 2026 14:39:06 +0000 Subject: [PATCH 13/18] make data a list --- gh_review_project/review_project.py | 112 +++++++++++++++------------- 1 file changed, 61 insertions(+), 51 deletions(-) diff --git a/gh_review_project/review_project.py b/gh_review_project/review_project.py index 75a04c8d..7613a835 100644 --- a/gh_review_project/review_project.py +++ b/gh_review_project/review_project.py @@ -44,10 +44,17 @@ class ProjectData: "Changes Requested", ] - def __init__(self, data: dict, test: bool = False, milestones: list = None): + def __init__( + self, + data: list, + test: bool = False, + milestones: list = None, + repos: list = None, + ): self.data = data self.test = test self.milestones = milestones + self.repos = repos @classmethod def from_github(cls, capture: bool = False, file: Path = None) -> "ProjectData": @@ -67,8 +74,8 @@ def from_github(cls, capture: bool = False, file: Path = None) -> "ProjectData": else: print("Unable to capture data as filename not specified.") - data, milestones = cls._extract_data(raw_data) - return cls(data=data, test=False, milestones=milestones) + data, milestones, repositories = cls._extract_data(raw_data) + return cls(data=data, test=False, milestones=milestones, repos=repositories) @classmethod def from_file(cls, file: Path) -> "ProjectData": @@ -78,26 +85,30 @@ def from_file(cls, file: Path) -> "ProjectData": with open(file) as f: raw_data = json.loads(f.read()) - data, milestones = cls._extract_data(raw_data) - return cls(data=data, test=True, milestones=milestones) + data, milestones, repositories = cls._extract_data(raw_data) + return cls(data=data, test=True, milestones=milestones, repos=repositories) @classmethod def _extract_data(cls, raw_data: dict) -> (dict, list): """ Extract useful information from the raw data and - store it in a dictionary keyed by repository. + store it in a list of PullRequest objects. """ - data = defaultdict(list) + data = [] milestones = set("None") + repositories = set() for pr in raw_data["items"]: pull_request = PullRequest( id=pr["id"], number=pr["content"]["number"], title=pr["content"]["title"], + repo=pr["content"]["repository"].replace("MetOffice/", ""), ) + repositories.add(pull_request.repo) + if "status" in pr: pull_request.status = pr["status"] @@ -114,18 +125,15 @@ def _extract_data(cls, raw_data: dict) -> (dict, list): if "sciTech Review" in pr: pull_request.scitechReview = pr["sciTech Review"] - pull_request.repo = pr["content"]["repository"].replace("MetOffice/", "") - data[pull_request.repo].append(pull_request) + data.append(pull_request) - return data, milestones + return data, milestones, repositories def get_reviewers_for_repo(self, repo: str) -> list: """ Return a list of reviewers for a given repository. """ - if repo in self.data: - pull_requests = self.data[repo] - else: + if repo not in self.repos: return [] reviewers = [] @@ -133,36 +141,37 @@ def get_reviewers_for_repo(self, repo: str) -> list: if self.test: print("\n=== Reviewers for " + repo) - for pr in pull_requests: - sr = pr.scitechReview - if sr: - reviewers.append(sr) - - cr = pr.codeReview - if cr: - reviewers.append(cr) - - if self.test and (cr or sr): - # Handle case where these are None - if not sr: - sr = "" - if not cr: - cr = "" - - print( - "SciTech:", - f"{sr: <18}", - "Code:", - f"{cr: <18}", - pr.title, - ) + for pr in self.data: + if pr.repo == repo: + sr = pr.scitechReview + if sr: + reviewers.append(sr) + + cr = pr.codeReview + if cr: + reviewers.append(cr) + + if self.test and (cr or sr): + # Handle case where these are None + if not sr: + sr = "" + if not cr: + cr = "" + + print( + "SciTech:", + f"{sr: <18}", + "Code:", + f"{cr: <18}", + pr.title, + ) return reviewers def get_repositories(self) -> list: """Return a list of repositories found in the project data.""" - return list(self.data.keys()) + return self.repos def get_by_milestone(self, status: str = "all") -> dict: """ @@ -175,18 +184,17 @@ def get_by_milestone(self, status: str = "all") -> dict: milestone_data = defaultdict(dict) - for repo in self.data: - for pr in self.data[repo]: - if ( - pr.status == status - or status == "all" - or (status == "open" and pr.status in self.open_states) - or (status == "closed" and pr.status not in self.open_states) - ): - milestone = pr.milestone - if not milestone_data[milestone]: - milestone_data[milestone] = defaultdict(list) - milestone_data[milestone][repo].append(pr) + for pr in self.data: + if ( + pr.status == status + or status == "all" + or (status == "open" and pr.status in self.open_states) + or (status == "closed" and pr.status not in self.open_states) + ): + milestone = pr.milestone + if not milestone_data[milestone]: + milestone_data[milestone] = defaultdict(list) + milestone_data[milestone][pr.repo].append(pr) return milestone_data @@ -204,12 +212,14 @@ def archive_milestone(self, milestone: str, dry_run: bool = False) -> None: class PullRequest: - def __init__(self, id: str = None, number: str = None, title: str = None): + def __init__( + self, id: str = None, number: str = None, title: str = None, repo: str = None + ): self.id = id self.number = number self.title = title + self.repo = repo - self.repo = None self.status = None self.milestone = "None" self.assignee = None From 940973d8c1e455e4157de85dd581bca565215783 Mon Sep 17 00:00:00 2001 From: jennyhickson <61183013+jennyhickson@users.noreply.github.com> Date: Mon, 2 Feb 2026 14:57:06 +0000 Subject: [PATCH 14/18] tidy milestone getter --- gh_review_project/review_project.py | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/gh_review_project/review_project.py b/gh_review_project/review_project.py index 7613a835..cd59712c 100644 --- a/gh_review_project/review_project.py +++ b/gh_review_project/review_project.py @@ -31,9 +31,10 @@ class ProjectData: """ A class to hold GitHub project data - data: dict Data filtered to contain most needed pull request details, - sorted by repository. + data: list raw_data turned into a list of PullRequest objects. test: bool Run using test data and extra logging. + milestones: list All milestones currently used in the project + repos: list All repositories currectly represented in the project """ open_states = [ @@ -92,11 +93,13 @@ def from_file(cls, file: Path) -> "ProjectData": def _extract_data(cls, raw_data: dict) -> (dict, list): """ Extract useful information from the raw data and - store it in a list of PullRequest objects. + store it in a list of PullRequest objects. Also extract a list of + milestones and repositories found in the project. """ data = [] - milestones = set("None") + milestones = set() + milestones.add("None") repositories = set() for pr in raw_data["items"]: @@ -182,7 +185,9 @@ def get_by_milestone(self, status: str = "all") -> dict: values and all, open or closed """ - milestone_data = defaultdict(dict) + milestone_data = {} + for milestone in self.milestones: + milestone_data[milestone] = defaultdict(list) for pr in self.data: if ( @@ -191,10 +196,7 @@ def get_by_milestone(self, status: str = "all") -> dict: or (status == "open" and pr.status in self.open_states) or (status == "closed" and pr.status not in self.open_states) ): - milestone = pr.milestone - if not milestone_data[milestone]: - milestone_data[milestone] = defaultdict(list) - milestone_data[milestone][pr.repo].append(pr) + milestone_data[pr.milestone][pr.repo].append(pr) return milestone_data From cd34f3b111eba68328ad73aa80a42417afdaad1d Mon Sep 17 00:00:00 2001 From: jennyhickson <61183013+jennyhickson@users.noreply.github.com> Date: Tue, 3 Feb 2026 10:25:06 +0000 Subject: [PATCH 15/18] update captured data --- gh_review_project/review_project.py | 4 + gh_review_project/test/test.json | 5931 ++++++++++++++++++++++++++- 2 files changed, 5934 insertions(+), 1 deletion(-) diff --git a/gh_review_project/review_project.py b/gh_review_project/review_project.py index cd59712c..ea100ca9 100644 --- a/gh_review_project/review_project.py +++ b/gh_review_project/review_project.py @@ -67,6 +67,10 @@ def from_github(cls, capture: bool = False, file: Path = None) -> "ProjectData": raw_data = json.loads(output.stdout) + # Remove body as is large before working with or storing data. + for pr in raw_data["items"]: + pr["content"].pop("body") + if capture: if file: with open(file, "w") as f: diff --git a/gh_review_project/test/test.json b/gh_review_project/test/test.json index 402811b5..6db02cfd 100644 --- a/gh_review_project/test/test.json +++ b/gh_review_project/test/test.json @@ -1 +1,5930 @@ -{"items": [{"assignees": ["james-bruten-mo"], "code Review": "jennyhickson", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @jennyhickson \r\n\r\n\r\n\r\nAdd project tracking workflow\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's style guidelines\r\n- [ ] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] If shared files have been modified, I have run the rose-stem suite locally\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 9, "repository": "MetOffice/gcom", "title": "add project workflow", "type": "PullRequest", "url": "https://github.com/MetOffice/gcom/pull/9"}, "id": "PVTI_lADOAGrG5M4A_OAXzgji2FI", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/gcom", "reviewers": ["jennyhickson"], "status": "Done", "title": "add project workflow"}, {"assignees": ["james-bruten-mo"], "code Review": "jennyhickson", "content": {"body": "# PR Summary\r\n\r\nCode Reviewer: @jennyhickson \r\n\r\n\r\n\r\nAdd project tracking workflow\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's style guidelines\r\n- [ ] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the Moci rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 9, "repository": "MetOffice/moci", "title": "add project workflow", "type": "PullRequest", "url": "https://github.com/MetOffice/moci/pull/9"}, "id": "PVTI_lADOAGrG5M4A_OAXzgji1pg", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/moci", "reviewers": ["jennyhickson"], "status": "Done", "title": "add project workflow"}, {"assignees": ["james-bruten-mo"], "code Review": "jennyhickson", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @jennyhickson \r\n\r\n\r\n\r\nAdd project tracking workflow\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's style guidelines\r\n- [ ] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the UM rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## Contributor License Agreement (CLA)\r\n\r\n- [ ] **Required** - I confirm that I have read and agree to the project's\r\n [Contributor License Agreement](https://metoffice.github.io/simulation-systems/FurtherDetails/contributing.html)\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues are properly linked and addressed\r\n- [ ] CLA compliance is confirmed\r\n- [ ] Code quality standards are met\r\n- [ ] Tests are adequate and passing\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 2, "repository": "MetOffice/um_aux", "title": "Add project workflow", "type": "PullRequest", "url": "https://github.com/MetOffice/um_aux/pull/2"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjizd0", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/um_aux", "reviewers": ["jennyhickson"], "status": "Done", "title": "Add project workflow"}, {"assignees": ["james-bruten-mo"], "code Review": "jennyhickson", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @jennyhickson \r\n\r\n\r\n\r\nAdd project tracking workflow\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's style guidelines\r\n- [ ] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] If shared files have been modified, I have run the UM and LFRic Apps rose\r\n stem suites\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 11, "repository": "MetOffice/socrates", "title": "add project workflow", "type": "PullRequest", "url": "https://github.com/MetOffice/socrates/pull/11"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjiw9s", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/socrates", "reviewers": ["jennyhickson"], "status": "Done", "title": "add project workflow"}, {"assignees": ["james-bruten-mo"], "code Review": "jennyhickson", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @jennyhickson \r\n\r\n\r\n\r\nAdd project tracking workflow\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's style guidelines\r\n- [ ] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] If shared files have been modified, I have run the UM and LFRic Apps rose\r\n stem suites\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 7, "repository": "MetOffice/casim", "title": "add project workflow", "type": "PullRequest", "url": "https://github.com/MetOffice/casim/pull/7"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjiwcY", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/casim", "reviewers": ["jennyhickson"], "status": "Done", "title": "add project workflow"}, {"assignees": ["james-bruten-mo"], "code Review": "jennyhickson", "content": {"body": "# PR Summary\r\n\r\nCode Reviewer: @jennyhickson \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's style guidelines\r\n- [ ] I have updated the version number in any edited documentation papers\r\n- [ ] The documentation papers have been built successfully, the formatting is\r\n as expected and links resolve correctly\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n# Code Review\r\n\r\n- [ ] The modified documentation has been changed to a sufficient standard\r\n", "number": 10, "repository": "MetOffice/um_doc", "title": "add project workflow", "type": "PullRequest", "url": "https://github.com/MetOffice/um_doc/pull/10"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjit60", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/um_doc", "reviewers": ["jennyhickson"], "status": "Done", "title": "add project workflow"}, {"assignees": ["james-bruten-mo"], "code Review": "jennyhickson", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @jennyhickson \r\n\r\n\r\n\r\nAdd project tracking workflow\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's style guidelines\r\n- [ ] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the UM rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 21, "repository": "MetOffice/um", "title": "add project workflow", "type": "PullRequest", "url": "https://github.com/MetOffice/um/pull/21"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjithY", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/um", "reviewers": ["jennyhickson"], "status": "Done", "title": "add project workflow"}, {"assignees": ["james-bruten-mo"], "code Review": "jennyhickson", "content": {"body": "# Description\r\n\r\nCode Reviewer: @jennyhickson \r\n\r\nAdd project tracking workflow\r\nFor this I've also updated the PR template to be closer to the other repos, including adding the reviewer entries at the top\r\n\r\n## Summary\r\n\r\n_Briefly describe the feature being introduced._\r\n\r\n## Changes\r\n\r\n_List the major changes made in this pull request._\r\n\r\n## Dependency\r\n\r\n_List dependent changes. Can use build-group logic here._\r\n\r\n## Impact\r\n\r\n_Discuss any potential impacts this feature may have on existing functionalities._\r\n\r\n## Issues addressed\r\n\r\nResolves\r\n\r\n_List issue(s) related to this PR._\r\n\r\n## Coordinated merge\r\n\r\n_Specify any coordinated merges here._\r\n\r\n\r\n## Checklist\r\n\r\n- [ ] I have performed a self-review of my own changes\r\n", "number": 160, "repository": "MetOffice/SimSys_Scripts", "title": "add project workflow", "type": "PullRequest", "url": "https://github.com/MetOffice/SimSys_Scripts/pull/160"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjir5A", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/SimSys_Scripts", "reviewers": ["jennyhickson"], "status": "Done", "title": "add project workflow"}, {"assignees": ["james-bruten-mo"], "code Review": "jennyhickson", "content": {"body": "# PR Summary\r\n\r\nCode Reviewer: @jennyhickson \r\n\r\n\r\n\r\nAdd project tracking workflow\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's style guidelines\r\n- [ ] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] This change does not introduce security vulnerabilities\r\n- [ ] I have reviewed the code for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)(including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 17, "repository": "MetOffice/shumlib", "title": "add project workflow", "type": "PullRequest", "url": "https://github.com/MetOffice/shumlib/pull/17"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjiqFE", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/shumlib", "reviewers": ["jennyhickson"], "status": "Done", "title": "add project workflow"}, {"assignees": ["james-bruten-mo"], "code Review": "jennyhickson", "content": {"body": "# PR Summary\r\n\r\nCode Reviewer: @jennyhickson \r\n\r\n\r\n\r\nAdd project tracking workflow\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's style guidelines\r\n- [ ] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] This change does not introduce security vulnerabilities\r\n- [ ] I have reviewed the code for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 15, "repository": "MetOffice/mule", "title": "add project workflow", "type": "PullRequest", "url": "https://github.com/MetOffice/mule/pull/15"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjipwA", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/mule", "reviewers": ["jennyhickson"], "status": "Done", "title": "add project workflow"}, {"assignees": ["james-bruten-mo"], "code Review": "jennyhickson", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @jennyhickson \r\n\r\n\r\n\r\nAdd project tracking workflow\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's style guidelines\r\n- [ ] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n- [ ] If editing `rose-meta/jules-shared` then have you supplied a linked UM PR?\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the JULES rose-stem suite\r\n- [ ] If shared files have been modified, I have run the UM and LFRic Apps rose\r\n stem suites\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## Approvals\r\n\r\nPlease request all relevant approvals. See the CodeOwners.txt file for section\r\nowners.\r\n\r\n### Technical\r\n\r\n- [ ] JULES Code Owner\r\n- [ ] OpenMP\r\n- [ ] River Routing\r\n- [ ] Rose Stem\r\n- [ ] Rose Metadata\r\n- [ ] Upgrade Macros\r\n\r\n### Scientific\r\n\r\n- [ ] Surface\r\n- [ ] Hydrology\r\n- [ ] Vegetation\r\n- [ ] Veg3 RED Demography\r\n- [ ] Biogechemistry\r\n- [ ] Biogenic fluxes\r\n- [ ] Fire\r\n- [ ] Lakes\r\n- [ ] Evaluation\r\n- [ ] Imogen\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 27, "repository": "MetOffice/jules", "title": "add project workflow", "type": "PullRequest", "url": "https://github.com/MetOffice/jules/pull/27"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjimwE", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/jules", "reviewers": ["jennyhickson"], "status": "Done", "title": "add project workflow"}, {"assignees": ["james-bruten-mo"], "code Review": "jennyhickson", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @jennyhickson \r\n\r\n\r\n\r\nAdd project tracking workflow\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's style guidelines\r\n- [ ] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] If shared files have been modified, I have run the UM and LFRic Apps rose\r\n stem suites\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 4, "repository": "MetOffice/socrates-spectral", "title": "add project workflow", "type": "PullRequest", "url": "https://github.com/MetOffice/socrates-spectral/pull/4"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjixqk", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/socrates-spectral", "reviewers": ["jennyhickson"], "status": "Done", "title": "add project workflow"}, {"assignees": ["james-bruten-mo"], "code Review": "jennyhickson", "content": {"body": "Code Reviewer: @jennyhickson \r\n\r\nAdd project tracking workflow\r\nAlso add a basic pr template for this repo with the CR entry", "number": 551, "repository": "MetOffice/simulation-systems", "title": "add project workflow", "type": "PullRequest", "url": "https://github.com/MetOffice/simulation-systems/pull/551"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjitHE", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/simulation-systems", "reviewers": ["jennyhickson"], "status": "Done", "title": "add project workflow"}, {"assignees": ["yaswant", "james-bruten-mo", "cameronbateman-mo"], "content": {"body": "# Description\r\n\r\nGithub workflow using python script to auto assign reviewers parsed from the pull request body.\r\n\r\nSci Tech Reviewer:\u00a0@james-bruten-mo \r\nCode Reviewer:\u00a0@yaswant \r\nThis PR:\r\n\r\n- is blocked-by #pr-number\r\n- blocks #pr-number\r\n- closes #issue-number\r\n- fixes #issue-number\r\n- is related to #issue-number ", "number": 72, "repository": "MetOffice/git_playground", "title": "added python script and github workflow for auto assigning pr reviewers", "type": "PullRequest", "url": "https://github.com/MetOffice/git_playground/pull/72"}, "id": "PVTI_lADOAGrG5M4A_OAXzgfbFi4", "repository": "https://github.com/MetOffice/git_playground", "reviewers": ["james-bruten-mo", "yaswant"], "sciTech Review": "james-bruten-mo", "status": "SciTech Review", "title": "added python script and github workflow for auto assigning pr reviewers"}, {"assignees": ["Pierre-siddall"], "content": {"body": "# Description\r\n\r\nSciTech: @yaswant \r\nCodeReview: @andrewcoughtrie \r\n\r\n(Provide a brief description of the changes in this PR, including any notes useful for reviewers)\r\n\r\nInclude a workflow to build sphinx documentation using reusable workflow.\r\n", "number": 71, "repository": "MetOffice/git_playground", "title": "Implement build documentation workflow ", "type": "PullRequest", "url": "https://github.com/MetOffice/git_playground/pull/71"}, "id": "PVTI_lADOAGrG5M4A_OAXzgfMMI4", "repository": "https://github.com/MetOffice/git_playground", "reviewers": ["yaswant", "yaswant", "andrewcoughtrie"], "sciTech Review": "yaswant", "title": "Implement build documentation workflow "}, {"assignees": ["yaswant"], "content": {"body": "# Description\r\n\r\n## Summary\r\n\r\nA GitHub action workflow to automatically assign PR author as assignees\r\n\r\n## Changes\r\n\r\n- add new GA workflow\r\n\r\n## Dependency\r\n\r\nNone\r\n\r\n## Impact\r\n\r\n\ud83e\udd16 \r\n\r\n## Issues addressed\r\n\r\nNA, but should have opened an issue, first!\r\n\r\n\r\n## Coordinated merge\r\n\r\nNA\r\n\r\n\r\n## Checklist\r\n\r\n- [x] I have performed a self-review of my own changes\r\n- [ ] Documentation Preview \r\n", "number": 45, "repository": "MetOffice/git_playground", "title": "Auto assign PR author as assignee", "type": "PullRequest", "url": "https://github.com/MetOffice/git_playground/pull/45"}, "id": "PVTI_lADOAGrG5M4A_OAXzgdIMSE", "repository": "https://github.com/MetOffice/git_playground", "reviewers": ["jennyhickson"], "title": "Auto assign PR author as assignee"}, {"assignees": ["r-sharp", "cameronbateman-mo"], "content": {"body": "# Description\r\nAutomate jules kgo process found here: https://code.metoffice.gov.uk/trac/jules/wiki/KGOInstall\r\n\r\nScript copies from user directories on azure spice and ex machines to the kgo locations on those machines.\r\n\r\nHave tested with dummy directories in the appropriate places but would be a good idea to test with an actual install to ensure it has the intended behaviour. \r\n\r\n## Checklist\r\n\r\n- [x] I have performed a self-review of my own changes\r\n", "number": 104, "repository": "MetOffice/SimSys_Scripts", "title": "added bash script to automate jules kgo process.", "type": "PullRequest", "url": "https://github.com/MetOffice/SimSys_Scripts/pull/104"}, "id": "PVTI_lADOAGrG5M4A_OAXzge8FcQ", "repository": "https://github.com/MetOffice/SimSys_Scripts", "reviewers": ["r-sharp", "ericaneininger"], "status": "SciTech Review", "title": "added bash script to automate jules kgo process."}, {"assignees": ["yaswant", "cameronbateman-mo"], "content": {"body": "# Description\r\nAdds github workflow to assign the creator of the PR request to the PR.\r\n## Summary\r\n\r\n_Briefly describe the feature being introduced._\r\n\r\n## Changes\r\n\r\n_List the major changes made in this pull request._\r\n\r\n## Dependency\r\n\r\n_List dependent changes. Can use build-group logic here._\r\n\r\n## Impact\r\n\r\n_Discuss any potential impacts this feature may have on existing functionalities._\r\n\r\n## Issues addressed\r\n\r\nResolves\r\n\r\n_List issue(s) related to this PR._\r\n\r\n## Coordinated merge\r\n\r\n_Specify any coordinated merges here._\r\n\r\n\r\n## Checklist\r\n\r\n- [x] I have performed a self-review of my own changes\r\n- [ ] Documentation Preview\r\n", "number": 55, "repository": "MetOffice/git_playground", "title": "added auto PR assigner", "type": "PullRequest", "url": "https://github.com/MetOffice/git_playground/pull/55"}, "id": "PVTI_lADOAGrG5M4A_OAXzgerEIU", "repository": "https://github.com/MetOffice/git_playground", "status": "Code Review", "title": "added auto PR assigner"}, {"content": {"body": "# Description\r\n\r\nChecking if we can reuse MO artifactory connection in GA\r\n\r\nThe authentication failure observed in artifactory authentication observed is due to the fact that [secrets are not passed to the runner when a workflow is triggered from a forked repository](https://docs.github.com/en/actions/how-tos/write-workflows/choose-what-workflows-do/use-secrets#using-secrets-in-a-workflow)\r\n", "number": 65, "repository": "MetOffice/git_playground", "title": "Test metoffice action for artifactory setup", "type": "PullRequest", "url": "https://github.com/MetOffice/git_playground/pull/65"}, "id": "PVTI_lADOAGrG5M4A_OAXzge8qms", "repository": "https://github.com/MetOffice/git_playground", "title": "Test metoffice action for artifactory setup"}, {"content": {"body": "# Description\r\n\r\nTest composite actions", "number": 66, "repository": "MetOffice/git_playground", "title": "Test composite", "type": "PullRequest", "url": "https://github.com/MetOffice/git_playground/pull/66"}, "id": "PVTI_lADOAGrG5M4A_OAXzge-PAs", "repository": "https://github.com/MetOffice/git_playground", "title": "Test composite"}, {"assignees": ["yaswant"], "code Review": "james-bruten-mo", "content": {"body": "# PR Summary\r\n\r\nCode Reviewer: @james-bruten-mo \r\n\r\nThe current cla-process workflow is probably good enough, but I feel that can be simplified/refactored significantly. (Disclaimer: I am still thinking and learning as we go!)\r\n\r\nThis PR keeps the original workflow and adds the refactored version so that we can compare side-by-side.\r\n\r\n[Promise.allSettled()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise/allSettled) for your reference \ud83d\ude04 \r\n\r\n", "number": 96, "repository": "MetOffice/git_playground", "title": "Refactor CLA check workflow", "type": "PullRequest", "url": "https://github.com/MetOffice/git_playground/pull/96"}, "id": "PVTI_lADOAGrG5M4A_OAXzgg7UQg", "labels": ["cla-signed"], "repository": "https://github.com/MetOffice/git_playground", "reviewers": ["james-bruten-mo"], "title": "Refactor CLA check workflow"}, {"assignees": ["yaswant"], "content": {"body": "Little optimisation to speed-up Code QC action.", "number": 27, "repository": "MetOffice/growss", "title": "Optimise validation action", "type": "PullRequest", "url": "https://github.com/MetOffice/growss/pull/27"}, "id": "PVTI_lADOAGrG5M4A_OAXzghMYH0", "labels": ["CI"], "repository": "https://github.com/MetOffice/growss", "status": "SciTech Review", "title": "Optimise validation action"}, {"assignees": ["yaswant"], "content": {"body": "# PR Summary\r\n\r\nSci Tech Reviewer: \r\nCode Reviewer: \r\n", "number": 99, "repository": "MetOffice/git_playground", "title": "Demo growss build/deploy workflows", "type": "PullRequest", "url": "https://github.com/MetOffice/git_playground/pull/99"}, "id": "PVTI_lADOAGrG5M4A_OAXzghQCy4", "labels": ["cla-required"], "repository": "https://github.com/MetOffice/git_playground", "status": "SciTech Review", "title": "Demo growss build/deploy workflows"}, {"assignees": ["Pierre-siddall"], "code Review": "james-bruten-mo", "content": {"body": "Tests the Fortran linting reusable workflow in growss and thereby closes #100.\r\n", "number": 101, "repository": "MetOffice/git_playground", "title": "Test fortran linter", "type": "PullRequest", "url": "https://github.com/MetOffice/git_playground/pull/101"}, "id": "PVTI_lADOAGrG5M4A_OAXzghY6mc", "labels": ["enhancement", "cla-signed", "CI", "contributor"], "repository": "https://github.com/MetOffice/git_playground", "reviewers": ["james-bruten-mo"], "status": "Code Review", "title": "Test fortran linter"}, {"assignees": ["yaswant"], "content": {"body": "Closes #499 \r\n\r\nNote: GitHub explicitly blocks access to private workflows from public forks. This PR is to demonstrate that.\r\n\r\nSolutions: \r\nConvert\r\n- growss to _public_, or **now done** and the action runs okay, but takes >10s slower (highlights pip vs uv)\r\n- ~~simulation-systems to _internal_~~", "number": 500, "repository": "MetOffice/simulation-systems", "title": "Use reusable workflow to build and deploy sphinx docs", "type": "PullRequest", "url": "https://github.com/MetOffice/simulation-systems/pull/500"}, "id": "PVTI_lADOAGrG5M4A_OAXzghhhQo", "labels": [":blue_book:Documentation"], "repository": "https://github.com/MetOffice/simulation-systems", "status": "SciTech Review", "title": "Use reusable workflow to build and deploy sphinx docs"}, {"assignees": ["dcaseGH"], "code Review": "cameronbateman-mo", "content": {"body": "I'll do docs at the end - at the moment is still work in prog but started PR to help review with MO git/cylc/rose stem experts\r\n\r\n# PR Summary\r\n\r\nSci/Tech Reviewer: @james-bruten-mo \r\nCode Reviewer: @cameronbateman-mo \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's style guidelines\r\n- [ ] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n- [ ] If editing `rose-meta/jules-shared` then have you supplied a linked UM PR?\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the JULES rose-stem suite\r\n- [ ] If shared files have been modified, I have run the UM and LFRic Apps rose\r\n stem suites\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 15, "repository": "MetOffice/jules", "title": "JASMIN site migration for JULES - git", "type": "PullRequest", "url": "https://github.com/MetOffice/jules/pull/15"}, "id": "PVTI_lADOAGrG5M4A_OAXzgiM9qU", "repository": "https://github.com/MetOffice/jules", "reviewers": ["james-bruten-mo"], "sciTech Review": "james-bruten-mo", "status": "SciTech Review", "title": "JASMIN site migration for JULES - git"}, {"assignees": ["mo-rickywong"], "code Review": "MatthewHambley", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @allynt\r\nCode Reviewer: @MatthewHambley \r\n\r\nThis PR is to allow users more direct access to the namelist configuration values from\r\nFortran object (rather than global module scope) while maintaining it's read-only nature.\r\ne.g.\r\n`modeldb%config%%MyNamelistMember()`\r\n\r\nThis PR is linked to LFRic-core trac ticket #4702, which provides more details on the change itself\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (eg. API changes) I have also run the LFRic Apps test suite\r\n using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (eg. PSyKAl-lite, Kernel\r\n interface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 175, "repository": "MetOffice/lfric_core", "title": "Reworked Configuration Namelist Access API", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/175"}, "id": "PVTI_lADOAGrG5M4A_OAXzgiZyxI", "labels": ["cla-signed"], "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["MatthewHambley", "stevemullerworth", "mike-hobson", "andrewcoughtrie", "EdHone", "MatthewHambley", "allynt", "MatthewHambley"], "sciTech Review": "allynt", "status": "SciTech Review", "title": "Reworked Configuration Namelist Access API"}, {"assignees": ["yaswant"], "code Review": "james-bruten-mo", "content": {"body": "Since this is a public repository, it makes sense to add some GitHub Copilot instructions for simulation-systems to guide contributors and Copilot.", "number": 529, "repository": "MetOffice/simulation-systems", "title": "Add GitHub Copilot instructions", "type": "PullRequest", "url": "https://github.com/MetOffice/simulation-systems/pull/529"}, "id": "PVTI_lADOAGrG5M4A_OAXzgieVuU", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/simulation-systems", "reviewers": ["james-bruten-mo"], "status": "Done", "title": "Add GitHub Copilot instructions"}, {"assignees": ["yaswant"], "code Review": "jennyhickson", "content": {"body": "Add an option to deploy html documentation locally to users `~/public_html/simulation-systems/` via `make clean deploy` command.\r\n\r\nAlso take this opportunity to update `config.py` ", "number": 530, "repository": "MetOffice/simulation-systems", "title": "Local deploy config", "type": "PullRequest", "url": "https://github.com/MetOffice/simulation-systems/pull/530"}, "id": "PVTI_lADOAGrG5M4A_OAXzgiebbQ", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/simulation-systems", "reviewers": ["jennyhickson", "jennyhickson"], "status": "Done", "title": "Local deploy config"}, {"assignees": ["james-bruten-mo"], "code Review": "jennyhickson", "content": {"body": "Tweaks for the UM release instructions", "number": 531, "repository": "MetOffice/simulation-systems", "title": "update um release instructions", "type": "PullRequest", "url": "https://github.com/MetOffice/simulation-systems/pull/531"}, "id": "PVTI_lADOAGrG5M4A_OAXzgifuu8", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/simulation-systems", "reviewers": ["jennyhickson", "jennyhickson"], "status": "Done", "title": "update um release instructions"}, {"assignees": ["james-bruten-mo"], "code Review": "jennyhickson", "content": {"body": "The rsync of kgo takes _much_ longer to the EXZ than it does to the 2nd host zone (not surprisingly!). So switch around the order of the rsyncs so that the 2nd host zone is done first. This makes it slightly less likely that the shared user authentication will have timed out.", "number": 146, "repository": "MetOffice/SimSys_Scripts", "title": "switch rsyncs", "type": "PullRequest", "url": "https://github.com/MetOffice/SimSys_Scripts/pull/146"}, "id": "PVTI_lADOAGrG5M4A_OAXzgifv8c", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/SimSys_Scripts", "reviewers": ["jennyhickson"], "status": "Done", "title": "switch rsyncs"}, {"assignees": ["jennyhickson"], "code Review": "james-bruten-mo", "content": {"body": "# Description\r\n\r\n## Summary\r\n\r\nAdd the ability to capture the current project data. This overrides test.json which can then be used with test mode to debug or examine closer. \r\n\r\nAlso added a print while in test mode to print fuller information about all reviews discovered to stdout. \r\n\r\n## Changes\r\n\r\n_List the major changes made in this pull request._\r\n\r\n## Dependency\r\n\r\n_List dependent changes. Can use build-group logic here._\r\n\r\n## Impact\r\n\r\n_Discuss any potential impacts this feature may have on existing functionalities._\r\n\r\n## Issues addressed\r\n\r\nResolves\r\n\r\n_List issue(s) related to this PR._\r\n\r\n## Coordinated merge\r\n\r\n_Specify any coordinated merges here._\r\n\r\n\r\n## Checklist\r\n\r\n- [x ] I have performed a self-review of my own changes\r\n", "number": 147, "repository": "MetOffice/SimSys_Scripts", "title": "Workload debug", "type": "PullRequest", "url": "https://github.com/MetOffice/SimSys_Scripts/pull/147"}, "id": "PVTI_lADOAGrG5M4A_OAXzgigYaI", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/SimSys_Scripts", "reviewers": ["james-bruten-mo"], "status": "Done", "title": "Workload debug"}, {"content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @mike-hobson \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (eg. API changes) I have also run the LFRic Apps test suite\r\n using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (eg. PSyKAl-lite, Kernel\r\n interface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 182, "repository": "MetOffice/lfric_core", "title": "Codeowners update", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/182"}, "id": "PVTI_lADOAGrG5M4A_OAXzgigxXk", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["mike-hobson"], "status": "Done", "title": "Codeowners update"}, {"assignees": ["james-bruten-mo"], "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @jennyhickson \r\n\r\n\r\n\r\nSome issues have been identified with the source extraction of the local build script.\r\nIf anyone is experiencing them, then they can be avoided by using the `-c` command line option to point at a local core source.\r\n@DrTVockerodtMO - I've tested locally and it looks like it works, but feel free to check.\r\n\r\n\r\n\r\n- closes #42 \r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\nMyself and Terry have tested the local build script now works\r\n\r\n- [ ] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have tests been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any psyclone related code (eg. PsyKAl-lite, Kernal\r\n inteface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [x] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [x] Documentation is complete and accurate\r\n- [x] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n", "number": 43, "repository": "MetOffice/lfric_apps", "title": "fix local build script", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/43"}, "id": "PVTI_lADOAGrG5M4A_OAXzgig0XM", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["jennyhickson"], "status": "Done", "title": "fix local build script"}, {"assignees": ["james-bruten-mo"], "code Review": "yaswant", "content": {"body": "At the moment we get a `cla-signed` label, even when the developer has already signed the cla on base. I'd strongly argue we should only get a `cla-signed` label in the PRs where the developer is signing the cla. Otherwise it'll just become meaningless noise", "number": 46, "repository": "MetOffice/growss", "title": "remove labelling when cla already signed on base", "type": "PullRequest", "url": "https://github.com/MetOffice/growss/pull/46"}, "id": "PVTI_lADOAGrG5M4A_OAXzgilBmY", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/growss", "reviewers": ["yaswant"], "status": "Done", "title": "remove labelling when cla already signed on base"}, {"assignees": ["james-bruten-mo"], "code Review": "jennyhickson", "content": {"body": "Some advice about using passphrases with ssh keys for test suites", "number": 534, "repository": "MetOffice/simulation-systems", "title": "SSH Passphrase Advice", "type": "PullRequest", "url": "https://github.com/MetOffice/simulation-systems/pull/534"}, "id": "PVTI_lADOAGrG5M4A_OAXzgilIpg", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/simulation-systems", "reviewers": ["jennyhickson"], "status": "Done", "title": "SSH Passphrase Advice"}, {"assignees": ["james-bruten-mo"], "code Review": "yaswant", "content": {"body": "# PR Summary\r\n\r\nCode Reviewer: @yaswant\r\n\r\n\r\n\r\nAdd in a shumlib build to the CI checks to allow testing of other mule libraries.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] This change does not introduce security vulnerabilities\r\n- [x] I have reviewed the code for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 14, "repository": "MetOffice/mule", "title": "add shumlib testing", "type": "PullRequest", "url": "https://github.com/MetOffice/mule/pull/14"}, "id": "PVTI_lADOAGrG5M4A_OAXzgilpZg", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/mule", "reviewers": ["yaswant", "yaswant"], "status": "Done", "title": "add shumlib testing"}, {"content": {"body": "Code Reviewer: @allynt\r\n\r\n# PR Summary\r\n\r\nIn light of recent confusion displayed by science developers\r\nI've added some words to try and explain why we test and\r\nfurther details on what we should be testing.\r\n\r\n## Code Quality Checklist\r\n\r\n- [X] I have performed a self-review of my own code\r\n- [X] My code follows the project's\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [X] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (eg. API changes) I have also run the LFRic Apps test suite\r\n using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n## Documentation\r\n\r\n- [X] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (eg. PSyKAl-lite, Kernel\r\n interface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)", "number": 185, "repository": "MetOffice/lfric_core", "title": "Add some words about the reason for testing", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/185"}, "id": "PVTI_lADOAGrG5M4A_OAXzgimF7A", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["allynt", "allynt"], "status": "Done", "title": "Add some words about the reason for testing"}, {"code Review": "james-bruten-mo", "content": {"body": "# Description\r\n\r\n## Summary\r\n\r\nOn FCM we always fetched the latest version of SimSys_Scripts, but this means check_macro_chains will now always fail as the latest version has been updated to use git. Since people are still running rose-stem on FCM as part of finishing reviews and migrating I'm making the script fail in a more obvious and cleaner way in this case. I'm checking for fcm with the presence of \"dependencies.sh\" since this has been removed in favour of \"dependencies.yaml\" in the git repos. \r\n\r\n## Testing\r\n\r\nThe script currently fails like this: https://cylchub/services/cylc-review/view/jennifer.hickson?&suite=apps_trunk%2Frun1&no_fuzzy_time=0&path=log/job/1/macro_chains_checker/01/job.err\r\n\r\nwith my check the error now looks like this:\r\n\r\nhttps://cylchub/services/cylc-review/view/jennifer.hickson?&suite=apps_trunk%2Frun5&no_fuzzy_time=0&path=log/job/1/macro_chains_checker/01/job.err\r\n\r\n## Checklist\r\n\r\n- [x ] I have performed a self-review of my own changes\r\n", "number": 148, "repository": "MetOffice/SimSys_Scripts", "title": "check_macro_chains to fail gracefully on FCM", "type": "PullRequest", "url": "https://github.com/MetOffice/SimSys_Scripts/pull/148"}, "id": "PVTI_lADOAGrG5M4A_OAXzgimes0", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/SimSys_Scripts", "reviewers": ["james-bruten-mo"], "status": "Done", "title": "check_macro_chains to fail gracefully on FCM"}, {"assignees": ["tinyendian"], "code Review": "EdHone", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @MetBenjaminWent \r\nCode Reviewer: @EdHone \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have tests been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n* I can only run a subset of Rose stem tests on Monsoon due to various difficulties, but the `ex1a_omp_developer` succeed, and the `run_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_gnu_fast-debug-64bit` and `run_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_gnu_fast-debug-64bit` tests no longer fail their KGO tests (these failures were caused by PSyclone dropping the `!DIR$ IVDEP` compiler directives)\r\n* Successful builds with the `meto-ex1a` and `esnz-cascade` optimisation platforms on the ESNZ Cascade HPC\r\n\r\n### trac.log\r\n\r\n* Unable to run the full test suite on Monsoon\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [x] If you have edited any psyclone related code (eg. PsyKAl-lite, Kernal\r\n inteface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n**Note:** The email address does not work, unfortunately\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 53, "repository": "MetOffice/lfric_apps", "title": "Additional PC2 optimisations for NG-ARCH", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/53"}, "id": "PVTI_lADOAGrG5M4A_OAXzgioBpQ", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["MetBenjaminWent"], "sciTech Review": "MetBenjaminWent ", "status": "SciTech Review", "title": "Additional PC2 optimisations for NG-ARCH"}, {"assignees": ["mo-lottieturner"], "code Review": "mo-alistairp", "content": {"body": "closes #30 \r\n# PR Summary\r\n\r\nSci/Tech Reviewer: @james-bruten-mo \r\nCode Reviewer: @mo-alistairp \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource\r\n and have tests been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n# Test Suite Results - lfric_apps - t30_remove_populate_graph_lfricinputs/run2\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | t30_remove_populate_graph_lfricinputs/run2 |\r\n| Suite User | charlotte.turner |\r\n| Workflow Start | 2025-12-16T13:42:33 |\r\n| Groups Run | developer', 'lfricinputs', 'lfricinputs_weekly |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [mo-lottieturner/lfric_apps@remove_populate_graph_lfricinputs](https://github.com/mo-lottieturner/lfric_apps/tree/remove_populate_graph_lfricinputs) | False |\r\n| lfric_core | [MetOffice/lfric_core@2025.12.1](https://github.com/MetOffice/lfric_core/tree/2025.12.1) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n
\r\n:white_check_mark: succeeded tasks - 1181\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| build_adjoint_tests_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_azspice_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_ex1a_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_adjoint_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_coupled_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gravity_wave_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_gravity_wave_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_gravity_wave_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_gravity_wave_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_gravity_wave_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gungho_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_gungho_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| build_gungho_model_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_model_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| build_gungho_model_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_gungho_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_tests_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_tests_integration_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_jules_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric2lfric_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric2lfric_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_full-debug-32bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_production-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_fast-debug-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_full-debug-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_production-32bit | succeeded |\r\n| build_lfric_coupled_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_linear_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_linear_model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_model_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_linear_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_mesh_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_name_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_ngarch_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_ngarch_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_ngarch_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_ngarch_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_physics_schemes_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_physics_schemes_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_shallow_water_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_shallow_water_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_shallow_water_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_shallow_water_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_solver_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_solver_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_solver_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_transport_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_transport_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_transport_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| check_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200_realorog-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200_realorog-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-nrun-v-crun | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-nrun-v-crun | succeeded |\r\n| check_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_runge-kutta-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_runge-kutta-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_semi-implicit-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_semi-implicit-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_nwp_gal9-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_nwp_gal9-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jules_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-seuk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_chem_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_chem_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9_debug-C12_azspice_gnu_full-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_debug-C12_ex1a_cce_full-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_noukca_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_noukca_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_zero-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_zero-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| config_dump_checker | succeeded |\r\n| export-source | succeeded |\r\n| export-source_azspice | succeeded |\r\n| export-source_ex1a | succeeded |\r\n| export-weights_azspice | succeeded |\r\n| export-weights_ex1a | succeeded |\r\n| fcm_make2_drivers | succeeded |\r\n| fcm_make2_lfric_coupled_ocean_ex1a_cce_fast-debug-64bit | succeeded |\r\n| fcm_make_drivers | succeeded |\r\n| fcm_make_lfric_coupled_ocean_ex1a_cce_fast-debug-64bit | succeeded |\r\n| fcm_make_lfric_coupled_river_ex1a_cce_fast-debug-64bit | succeeded |\r\n| generate_weights_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_lfric2um-performance-C224L70_N512L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet_lbc_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-falklands_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-nwp_gal9-N320L70_C224L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-var_seuk_lam_azspice_weightgen_script | succeeded |\r\n| global_variables_checker | succeeded |\r\n| housekeep_azspice | succeeded |\r\n| housekeep_ex1a | succeeded |\r\n| local_build_test | succeeded |\r\n| macro_chains_checker | succeeded |\r\n| memory_plot_ex_lfricinputs_lfric2um-performance-C224L70_N512L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| memory_plot_ex_lfricinputs_lfric2um-performance-C224L70_N512L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| memory_plot_ex_lfricinputs_um2lfric-nwp_gal9-N320L70_C224L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| memory_plot_ex_lfricinputs_um2lfric-nwp_gal9-N320L70_C224L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| perftools-export_gungho_model_baroclinic-profile_perf-C24_MG_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| pert_compare_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| pert_compare_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_cylinder_xz-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_cylinder_xz-BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| python_unit_tests | succeeded |\r\n| remote-init_azspice | succeeded |\r\n| remote-init_ex1a | succeeded |\r\n| rose-stem_lint_checker | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-var_seuk_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-var_seuk_lam_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_adjoint_tests_canned_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_canned_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_azspice_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_ex1a_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_varying_ls-C12_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_adjoint_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_coupled_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gravity_wave_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_gravity_wave_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gungho_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_gungho_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit_pert_off | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit_pert_off | succeeded |\r\n| run_gungho_model_baroclinic-profile_perf-C24_MG_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_gungho_model_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200_realorog-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200_realorog-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_no-timestep-method-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_no-timestep-method-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_runge-kutta-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_runge-kutta-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_semi-implicit-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_semi-implicit-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_gungho_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_tests_integration_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_nwp_gal9-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_nwp_gal9-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jules_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jules_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-seuk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric_atm_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_canned_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_chem_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_chem_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C12_azspice_gnu_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C12_ex1a_cce_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-performance-C224L70_N512L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-performance-C224L70_N512L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C224L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C224L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-var_seuk_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-var_seuk_lam_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_linear_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_linear_model_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_zero-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_zero-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_linear_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_mesh_BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP2x2-50000x50000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1500x1500_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_C16_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C224_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C224_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_rot_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_rot_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_falklands_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_falklands_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_seuk_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_seuk_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_var_seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_var_seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_cylinder_xz-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_cylinder_xz-BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_name_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_ngarch_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_physics_schemes_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_physics_schemes_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_shallow_water_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_shallow_water_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_transport_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| site_validator | succeeded |\r\n| style_checker | succeeded |\r\n| test_launch-exe | succeeded |\r\n| validate_rose_meta | succeeded |\r\n
\r\n\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any psyclone related code (eg. PsyKAl-lite, Kernal\r\n inteface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [x] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [x] Documentation is complete and accurate\r\n- [x] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n", "number": 54, "repository": "MetOffice/lfric_apps", "title": "Removing populate_graph_lfricinputs.cylc", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/54"}, "id": "PVTI_lADOAGrG5M4A_OAXzgipEyc", "labels": ["cla-signed", "LFRic Inputs"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["james-bruten-mo", "mo-alistairp", "mo-alistairp"], "sciTech Review": "james-bruten-mo", "status": "Done", "title": "Removing populate_graph_lfricinputs.cylc"}, {"assignees": ["ukmo-juan-castillo"], "code Review": "mo-lottieturner", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @mike-hobson \r\nCode Reviewer: @mo-lottieturner \r\n\r\nThis is the git version of svn ticket 1016: https://code.metoffice.gov.uk/trac/lfric_apps/ticket/1016\r\n\r\nLfric2lfric is now capable of generating lbc files. It reads a netcdf file containing a set of field timeseries, and regrids them into a destination mesh. At the moment the destination mesh is the full regional mesh, and in the output we have lbc values at the rim of the domain, and zeroes in the inside.\r\n\r\nI had to create a dedicated clock for OASIS instead of using the modeldb clock, given that now we are reading a time series and we can not change the time at will. The source of data used to create lbcs is copied locally, so it will have to be copied to a central location. I could not link the clock ticking to file advance because this seems to work only for a single XIOS context, but we have two.\r\n\r\nOne of the existing KGOs had to be updated. The reason is that the KGO test was using the wrong mesh, and this error was introduced in ticket 621: https://code.metoffice.gov.uk/trac/lfric_apps/ticket/621\r\n\r\n- closes #48 \r\n- fixes #48 \r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource\r\n and have tests been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n### trac.log\r\n\r\n# Test Suite Results - lfric_apps - test_lfric2lfric_lbc/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | test_lfric2lfric_lbc/run1 |\r\n| Suite User | juan.m.castillo |\r\n| Workflow Start | 2026-01-12T10:16:53 |\r\n| Groups Run | all |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [ukmo-juan-castillo/lfric_apps@test_lfric2lfric_lbc](https://github.com/ukmo-juan-castillo/lfric_apps/tree/test_lfric2lfric_lbc) | False |\r\n| lfric_core | [MetOffice/lfric_core@2025.12.1](https://github.com/MetOffice/lfric_core/tree/2025.12.1) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n
\r\n:white_check_mark: succeeded tasks - 1461\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| build_adjoint_tests_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_azspice_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_ex1a_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_adjoint_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_coupled_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gravity_wave_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_gravity_wave_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_gravity_wave_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_gravity_wave_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_gravity_wave_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gungho_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_gungho_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| build_gungho_model_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_model_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| build_gungho_model_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_gungho_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_tests_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_tests_integration_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_jules_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric2lfric_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric2lfric_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_full-debug-32bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_production-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_fast-debug-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_full-debug-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_production-32bit | succeeded |\r\n| build_lfric_atm_ex1a_gnu_fast-debug-32bit | succeeded |\r\n| build_lfric_coupled_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_linear_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_linear_model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_model_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_linear_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_mesh_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_name_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_ngarch_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_ngarch_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_ngarch_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_ngarch_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_physics_schemes_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_physics_schemes_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_shallow_water_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_shallow_water_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_shallow_water_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_shallow_water_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_socrates_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_socrates_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_solver_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_solver_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_solver_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_transport_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_transport_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_transport_ex1a_cce_production-64bit | succeeded |\r\n| build_transport_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| check_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200_realorog-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200_realorog-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-nrun-v-crun | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-nrun-v-crun | succeeded |\r\n| check_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_runge-kutta-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_runge-kutta-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_semi-implicit-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_semi-implicit-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_nwp_gal9-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_nwp_gal9-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_op_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jules_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-seuk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-uk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-uk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-ukv_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-ukv_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric_atm_aquaplanet-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_aquaplanet-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_camembert_case3_gj1214b-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_camembert_case3_gj1214b-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_1T-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_2T-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_4T-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_chem-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9_chem-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9_chem_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_chem_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_comp_tran_ref_3d_l120-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_hd209458b-C24_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_hd209458b-C24_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_casim-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_casim-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_coma9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_coma9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_comorph_dev-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_comorph_dev-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_comorph_tb-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C48_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9-pert-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9-pert-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_coarse_aero-C48_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_coarse_aero-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_coarse_aero_threaded-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_coarse_aero_threaded-C48_MG_ex1a_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_da-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9_da-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9_debug-C12_azspice_gnu_full-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_debug-C12_ex1a_cce_full-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_debug-C48_MG_azspice_gnu_full-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_debug-C48_MG_ex1a_cce_full-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_eda-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9_eda-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9_eda_jada-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9_eda_jada-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9_mol-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9_mol-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9_noukca_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_noukca_1T-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_noukca_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_noukca_2T-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_noukca_2T-C48_MG_ex1a_cce_full-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_noukca_4T-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_thai_ben1-C48_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_thai_ben1-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_zero-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_zero-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| config_dump_checker | succeeded |\r\n| export-source | succeeded |\r\n| export-source_azspice | succeeded |\r\n| export-source_ex1a | succeeded |\r\n| export-weights_azspice | succeeded |\r\n| export-weights_ex1a | succeeded |\r\n| fcm_make2_drivers | succeeded |\r\n| fcm_make2_lfric_coupled_ocean_ex1a_cce_fast-debug-64bit | succeeded |\r\n| fcm_make_drivers | succeeded |\r\n| fcm_make_lfric_coupled_ocean_ex1a_cce_fast-debug-64bit | succeeded |\r\n| fcm_make_lfric_coupled_river_ex1a_cce_fast-debug-64bit | succeeded |\r\n| generate_weights_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam-lbc_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet_lbc_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-falklands_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-var_seuk_lam_azspice_weightgen_script | succeeded |\r\n| global_variables_checker | succeeded |\r\n| housekeep_azspice | succeeded |\r\n| housekeep_ex1a | succeeded |\r\n| local_build_test | succeeded |\r\n| macro_chains_checker | succeeded |\r\n| memory_plot_ex_lfric_atm_nwp_gal9-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| perftools-export_gungho_model_baroclinic-profile_perf-C24_MG_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| pert_compare_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| pert_compare_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| pert_compare_lfric_atm_nwp_gal9-pert-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| pert_compare_lfric_atm_nwp_gal9-pert-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_agnesi_nhyd_cart-BiP360x8-400x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C192_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C96_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bell_3d_cart-BiP300x200-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bryan_fritsch-moist-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_earth-like-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_grabowski-clark-BiP200x10-18x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_held-suarez-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_moist_baroclinic_orog-C48_MG_ex1a_gnu_fast-debug-64bit-crun3 | succeeded |\r\n| plot_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-smag-l300-BiP200x8-5x5_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C96_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar3d_cart-BiP200x200-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_25m-BiP2048x8-25x25_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_50m-BiP1024x8-50x50_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_warm3dbubble-BiP100x100-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_lfric_atm_aquaplanet-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_aquaplanet-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_camembert_case3_gj1214b-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_camembert_case3_gj1214b-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9_chem-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9_chem-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_casim-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_casim-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_coma9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_coma9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_comorph_dev-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_comorph_dev-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_comorph_tb-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C48_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_nwp_gal9-pert-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_nwp_gal9-pert-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_nwp_gal9_coarse_aero-C48_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_nwp_gal9_coarse_aero-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_nwp_gal9_da-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9_da-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9_eda-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9_eda-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9_eda_jada-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9_eda_jada-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9_mol-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9_mol-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_thai_ben1-C48_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_thai_ben1-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_cylinder_xz-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_cylinder_xz-BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C96_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi_ffsl-C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi_ffsl-C96_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi_koren-C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi_koren-C96_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi_mono-C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi_mono-C96_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_vortex_plane-BiP64x64-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_vortex_plane-BiP64x64-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_vortex_plane_vi-BiP64x64-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_vortex_plane_vi-BiP64x64-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_curl_free_reversible_xz_ffsl_bigcfl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_curl_free_reversible_xz_ffsl_bigcfl-BiP100x10-20x20_ex1a_cce_production-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl_bigcfl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl_bigcfl-BiP100x10-20x20_ex1a_cce_production-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C96_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C96_ex1a_cce_production-64bit | succeeded |\r\n| plot_transport_deformation_2d_ffsl_bigcfl-C96_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_ffsl_bigcfl-C96_ex1a_cce_production-64bit | succeeded |\r\n| plot_transport_divergent_2d_cylinder_ffsl_bigcfl-C96_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_divergent_2d_cylinder_ffsl_bigcfl-C96_ex1a_cce_production-64bit | succeeded |\r\n| plot_transport_eternal_fountain_xz_ffsl_bigcfl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_eternal_fountain_xz_ffsl_bigcfl-BiP100x10-20x20_ex1a_cce_production-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_bigcfl-C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_bigcfl-C48_ex1a_cce_production-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| python_unit_tests | succeeded |\r\n| remote-init_azspice | succeeded |\r\n| remote-init_ex1a | succeeded |\r\n| rose-stem_lint_checker | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-var_seuk_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-var_seuk_lam_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_adjoint_tests_canned_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_canned_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_azspice_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_ex1a_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_varying_ls-C12_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_adjoint_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_coupled_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gravity_wave_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_gravity_wave_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gungho_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_gungho_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_agnesi_nhyd_cart-BiP360x8-400x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C192_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C96_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit_pert_off | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit_pert_off | succeeded |\r\n| run_gungho_model_baroclinic-profile_perf-C24_MG_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bell_3d_cart-BiP300x200-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bryan_fritsch-moist-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_gungho_model_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200_realorog-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200_realorog-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_earth-like-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_gh_profile_omp6_6nodes-C192_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_grabowski-clark-BiP200x10-18x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_held-suarez-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_moist_baroclinic_orog-C48_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_moist_baroclinic_orog-C48_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_moist_baroclinic_orog-C48_MG_ex1a_gnu_fast-debug-64bit-crun2 | succeeded |\r\n| run_gungho_model_moist_baroclinic_orog-C48_MG_ex1a_gnu_fast-debug-64bit-crun3 | succeeded |\r\n| run_gungho_model_no-timestep-method-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_no-timestep-method-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-smag-l300-BiP200x8-5x5_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_runge-kutta-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_runge-kutta-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C96_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar3d_cart-BiP200x200-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_semi-implicit-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_semi-implicit-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_25m-BiP2048x8-25x25_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_50m-BiP1024x8-50x50_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_warm3dbubble-BiP100x100-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_gungho_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_tests_integration_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_nwp_gal9-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_nwp_gal9-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_op_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_op_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jules_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jules_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-seuk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-uk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-uk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-ukv_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-ukv_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric_atm_aquaplanet-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_aquaplanet-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_aquaplanet-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_aquaplanet-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_camembert_case3_gj1214b-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_camembert_case3_gj1214b-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_camembert_case3_gj1214b-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_camembert_case3_gj1214b-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_canned_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_1T-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_2T-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_4T-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_chem-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9_chem-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9_chem-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9_chem-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9_chem_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_chem_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_comp_tran_ref_3d_l120-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_hd209458b-C24_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_hd209458b-C24_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_hd209458b-C24_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_hd209458b-C24_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_casim-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_casim-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_casim-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_casim-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_coma9-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_coma9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_coma9-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_coma9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_comorph_dev-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_comorph_dev-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_comorph_dev-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_comorph_dev-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_comorph_tb-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_comorph_tb-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C48_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9-pert-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9-pert-C12_azspice_gnu_fast-debug-32bit_pert_off | succeeded |\r\n| run_lfric_atm_nwp_gal9-pert-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9-pert-C12_ex1a_cce_fast-debug-32bit_pert_off | succeeded |\r\n| run_lfric_atm_nwp_gal9_coarse_aero-C48_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_coarse_aero-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_coarse_aero_threaded-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_coarse_aero_threaded-C48_MG_ex1a_cce_production-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_coarse_aero_threaded-C48_MG_ex1a_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_da-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_da-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_da-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_da-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C12_azspice_gnu_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C12_ex1a_cce_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C48_MG_azspice_gnu_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C48_MG_ex1a_cce_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_eda-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_eda-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_eda-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_eda-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_eda_jada-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_eda_jada-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_eda_jada-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_eda_jada-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_ls_and_jedi-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_ls_and_jedi-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_mol-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_mol-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_mol-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_mol-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_1T-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_2T-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_2T-C48_MG_ex1a_cce_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_4T-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_4T-C48_MG_ex1a_cce_production-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3-seuk_ls_and_jedi_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_ral3-seuk_ls_and_jedi_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_thai_ben1-C48_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_thai_ben1-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-var_seuk_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-var_seuk_lam_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_linear_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_linear_model_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_zero-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_zero-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_linear_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_mesh_BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x100-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP1024x8-50x50_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x10-18x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x200-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x8-5x5_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP2048x8-25x25_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP2x2-50000x50000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x200-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP360x8-400x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1500x1500_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_C16_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C192_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_rot_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_rot_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C96_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C96_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C96_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_falklands_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_falklands_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_uk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_uk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_ukv_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_ukv_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_seuk_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_seuk_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_var_seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_var_seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_cylinder_xz-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_cylinder_xz-BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_name_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_ngarch_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_physics_schemes_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_physics_schemes_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_shallow_water_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C96_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi_ffsl-C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi_ffsl-C96_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi_koren-C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi_koren-C96_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi_mono-C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi_mono-C96_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_shallow_water_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_shallow_water_vortex_plane-BiP64x64-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_vortex_plane-BiP64x64-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_vortex_plane_vi-BiP64x64-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_vortex_plane_vi-BiP64x64-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_socrates_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_socrates_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_solver_bicgstab-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_transport_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_curl_free_reversible_xz_ffsl_bigcfl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_curl_free_reversible_xz_ffsl_bigcfl-BiP100x10-20x20_ex1a_cce_production-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl_bigcfl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl_bigcfl-BiP100x10-20x20_ex1a_cce_production-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C96_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C96_ex1a_cce_production-64bit | succeeded |\r\n| run_transport_deformation_2d_ffsl_bigcfl-C96_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_ffsl_bigcfl-C96_ex1a_cce_production-64bit | succeeded |\r\n| run_transport_divergent_2d_cylinder_ffsl_bigcfl-C96_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_divergent_2d_cylinder_ffsl_bigcfl-C96_ex1a_cce_production-64bit | succeeded |\r\n| run_transport_eternal_fountain_xz_ffsl_bigcfl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_eternal_fountain_xz_ffsl_bigcfl-BiP100x10-20x20_ex1a_cce_production-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_bigcfl-C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_bigcfl-C48_ex1a_cce_production-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| site_validator | succeeded |\r\n| style_checker | succeeded |\r\n| test_launch-exe | succeeded |\r\n| validate_rose_meta | succeeded |\r\n
\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any psyclone related code (eg. PsyKAl-lite, Kernal\r\n inteface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 55, "repository": "MetOffice/lfric_apps", "title": "Generation of lfric2lfric lbcs", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/55"}, "id": "PVTI_lADOAGrG5M4A_OAXzgipHzg", "labels": ["cla-signed", "LFRic Inputs"], "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["mike-hobson", "mike-hobson", "mo-lottieturner", "mo-lottieturner"], "sciTech Review": "mike-hobson", "status": "Code Review", "title": "Generation of lfric2lfric lbcs"}, {"assignees": ["MetBenjaminWent"], "code Review": "mo-lottieturner", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @oakleybrunt\r\nCode Reviewer: @mo-lottieturner \r\n\r\nLinked issue: #49\r\nLinked FCM Trac ticket: [Apps:900](https://code.metoffice.gov.uk/trac/lfric_apps/ticket/900)\r\nLinked planned Documentation update: #25 \r\nPlanned follow up tech debt ticket: #86\r\n\r\n\r\n\r\n\r\nThe primary goal of this ticket is to lift aspects like the options list, which was common across scripts, but initialised for a particular script, and collate this to allow the creation of a global script.\r\nAll of the newer scripts were often using copies of identical code.\r\nThis ticket creates a bucket script which is read in, and given a specific file name, the bespoke sections, originally across multiple scripts, are utilised by a single file. \r\nIt also mandates in the make system that if we want to use PSyclone on a file, without a script, it needs to be explicitly stated, otherwise the global script is used. \r\nTo ensure this rigidity, the no script line is moved to a script which is only called if the user specifies the file needs a PSyclone pass without a file. \r\nTo accommodate this change, and ensure other sites are not adversely affected, I've done a bit of housekeeping other the sites directories, adding dummy global scripts where required, or sym-linking whole directories like Transmute's PSyKal cousin. \r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource\r\n and have tests been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n# Test Suite Results - lfric_apps - transmute_explicit_list_overrides2/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | transmute_explicit_list_overrides2/run1 |\r\n| Suite User | benjamin.went |\r\n| Workflow Start | 2025-12-18T10:08:35 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [MetBenjaminWent/lfric_apps@transmute_explicit_list_overrides](https://github.com/MetBenjaminWent/lfric_apps/tree/transmute_explicit_list_overrides) | False |\r\n| lfric_core | [MetOffice/lfric_core@2025.12.1](https://github.com/MetOffice/lfric_core/tree/2025.12.1) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n
\r\n:white_check_mark: succeeded tasks - 1104\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| build_adjoint_tests_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_azspice_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_ex1a_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_adjoint_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_coupled_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gravity_wave_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_gravity_wave_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_gravity_wave_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_gravity_wave_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_gravity_wave_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gungho_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_gungho_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| build_gungho_model_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_model_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| build_gungho_model_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_gungho_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_tests_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_tests_integration_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_jules_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric2lfric_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric2lfric_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_full-debug-32bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_production-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_fast-debug-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_full-debug-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_production-32bit | succeeded |\r\n| build_lfric_coupled_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_linear_model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_model_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_linear_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_mesh_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_name_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_ngarch_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_ngarch_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_ngarch_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_ngarch_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_physics_schemes_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_physics_schemes_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_shallow_water_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_shallow_water_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_shallow_water_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_shallow_water_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_solver_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_solver_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_solver_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_transport_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_transport_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_transport_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| check_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200_realorog-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200_realorog-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-nrun-v-crun | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-nrun-v-crun | succeeded |\r\n| check_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_runge-kutta-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_runge-kutta-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_semi-implicit-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_semi-implicit-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_nwp_gal9-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_nwp_gal9-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jules_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-seuk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_chem_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_chem_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9_debug-C12_azspice_gnu_full-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_debug-C12_ex1a_cce_full-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_noukca_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_noukca_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_zero-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_zero-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| config_dump_checker | succeeded |\r\n| export-source | succeeded |\r\n| export-source_azspice | succeeded |\r\n| export-source_ex1a | succeeded |\r\n| export-weights_azspice | succeeded |\r\n| export-weights_ex1a | succeeded |\r\n| fcm_make2_drivers | succeeded |\r\n| fcm_make2_lfric_coupled_ocean_ex1a_cce_fast-debug-64bit | succeeded |\r\n| fcm_make_drivers | succeeded |\r\n| fcm_make_lfric_coupled_ocean_ex1a_cce_fast-debug-64bit | succeeded |\r\n| fcm_make_lfric_coupled_river_ex1a_cce_fast-debug-64bit | succeeded |\r\n| generate_weights_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet_lbc_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-falklands_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_azspice_weightgen_script | succeeded |\r\n| global_variables_checker | succeeded |\r\n| local_build_test | succeeded |\r\n| macro_chains_checker | succeeded |\r\n| perftools-export_gungho_model_baroclinic-profile_perf-C24_MG_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| pert_compare_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| pert_compare_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_cylinder_xz-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_cylinder_xz-BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| python_unit_tests | succeeded |\r\n| remote-init_azspice | succeeded |\r\n| remote-init_ex1a | succeeded |\r\n| rose-stem_lint_checker | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_adjoint_tests_canned_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_canned_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_azspice_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_ex1a_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_varying_ls-C12_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_adjoint_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_coupled_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gravity_wave_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_gravity_wave_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gungho_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_gungho_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit_pert_off | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit_pert_off | succeeded |\r\n| run_gungho_model_baroclinic-profile_perf-C24_MG_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_gungho_model_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200_realorog-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200_realorog-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_no-timestep-method-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_no-timestep-method-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_runge-kutta-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_runge-kutta-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_semi-implicit-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_semi-implicit-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_gungho_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_tests_integration_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_nwp_gal9-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_nwp_gal9-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jules_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jules_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-seuk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric_atm_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_canned_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_chem_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_chem_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C12_azspice_gnu_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C12_ex1a_cce_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_linear_model_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_zero-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_zero-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_linear_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_mesh_BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP2x2-50000x50000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1500x1500_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_C16_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_rot_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_rot_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_falklands_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_falklands_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_seuk_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_seuk_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_cylinder_xz-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_cylinder_xz-BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_name_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_ngarch_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_physics_schemes_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_physics_schemes_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_shallow_water_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_shallow_water_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_transport_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| site_validator | succeeded |\r\n| style_checker | succeeded |\r\n| test_launch-exe | succeeded |\r\n| validate_rose_meta | succeeded |\r\n
\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [x] If you have edited any psyclone related code (eg. PsyKAl-lite, Kernal\r\n inteface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [x] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [x] Documentation is complete and accurate\r\n- [x] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n", "number": 56, "repository": "MetOffice/lfric_apps", "title": "Transmute explicit no Transformation list and global.py", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/56"}, "id": "PVTI_lADOAGrG5M4A_OAXzgipIv4", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["oakleybrunt", "oakleybrunt", "mo-lottieturner"], "sciTech Review": "oakleybrunt", "status": "Code Review", "title": "Transmute explicit no Transformation list and global.py"}, {"assignees": ["MetBenjaminWent"], "code Review": "mo-lucy-gordon", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @jcsmeto\r\nCode Reviewer: @mo-lucy-gordon \r\n\r\nIssue: https://github.com/MetOffice/lfric_apps/issues/50\r\nPR migrated from FCM ticket: https://code.metoffice.gov.uk/trac/lfric_apps/ticket/1076\r\n**BLOCKED BY PR** #56 \r\n\r\n\r\n\r\n\r\nDue to the size and complexity of boundry layer, this ticket is a sub-section of 'easy-win' files. \r\nWe are aiming to utilise PSyclone for all of optimisation in LFRic. \r\nThese files contain quite simple structures and loops, a local script has been created for most of the times. \r\n* It removes any non performant j loops. \r\n* spans a file wide parallel section\r\n* Adds OMP Dos inside\r\n* Not all files in this opt use this local script\r\n* Small bespoke needs per file which use the local script have been lifted, emulating the global script\r\n\r\n\r\n\r\n\r\n**BLOCKED BY PR** #56 \r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have tests been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n# Test Suite Results - lfric_apps - part_bdry_lyr_psycloned/run2\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | part_bdry_lyr_psycloned/run2 |\r\n| Suite User | benjamin.went |\r\n| Workflow Start | 2025-12-16T14:23:31 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [MetBenjaminWent/lfric_apps@part_bdry_lyr_psycloned](https://github.com/MetBenjaminWent/lfric_apps/tree/part_bdry_lyr_psycloned) | False |\r\n| lfric_core | [MetOffice/lfric_core@2025.12.1](https://github.com/MetOffice/lfric_core/tree/2025.12.1) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n
\r\n:x: failed tasks - 1\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| run_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | failed |\r\n
\r\n
\r\n:white_check_mark: succeeded tasks - 1101\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| build_adjoint_tests_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_azspice_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_ex1a_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_adjoint_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_coupled_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gravity_wave_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_gravity_wave_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_gravity_wave_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_gravity_wave_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_gravity_wave_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gungho_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_gungho_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| build_gungho_model_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_model_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| build_gungho_model_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_gungho_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_tests_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_tests_integration_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_jules_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric2lfric_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric2lfric_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_full-debug-32bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_production-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_fast-debug-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_full-debug-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_production-32bit | succeeded |\r\n| build_lfric_coupled_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_linear_model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_model_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_linear_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_mesh_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_name_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_ngarch_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_ngarch_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_ngarch_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_ngarch_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_physics_schemes_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_physics_schemes_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_shallow_water_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_shallow_water_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_shallow_water_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_shallow_water_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_solver_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_solver_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_solver_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_transport_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_transport_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_transport_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| check_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200_realorog-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200_realorog-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-nrun-v-crun | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-nrun-v-crun | succeeded |\r\n| check_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_runge-kutta-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_runge-kutta-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_semi-implicit-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_semi-implicit-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_nwp_gal9-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_nwp_gal9-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jules_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-seuk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_chem_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_chem_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9_debug-C12_azspice_gnu_full-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_debug-C12_ex1a_cce_full-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_noukca_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_noukca_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_zero-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_zero-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| config_dump_checker | succeeded |\r\n| export-source | succeeded |\r\n| export-source_azspice | succeeded |\r\n| export-source_ex1a | succeeded |\r\n| export-weights_azspice | succeeded |\r\n| export-weights_ex1a | succeeded |\r\n| fcm_make2_drivers | succeeded |\r\n| fcm_make2_lfric_coupled_ocean_ex1a_cce_fast-debug-64bit | succeeded |\r\n| fcm_make_drivers | succeeded |\r\n| fcm_make_lfric_coupled_ocean_ex1a_cce_fast-debug-64bit | succeeded |\r\n| fcm_make_lfric_coupled_river_ex1a_cce_fast-debug-64bit | succeeded |\r\n| generate_weights_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet_lbc_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-falklands_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_azspice_weightgen_script | succeeded |\r\n| global_variables_checker | succeeded |\r\n| local_build_test | succeeded |\r\n| macro_chains_checker | succeeded |\r\n| perftools-export_gungho_model_baroclinic-profile_perf-C24_MG_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| pert_compare_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| pert_compare_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_cylinder_xz-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_cylinder_xz-BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| python_unit_tests | succeeded |\r\n| remote-init_azspice | succeeded |\r\n| remote-init_ex1a | succeeded |\r\n| rose-stem_lint_checker | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_adjoint_tests_canned_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_canned_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_azspice_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_ex1a_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_varying_ls-C12_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_adjoint_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_coupled_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gravity_wave_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_gravity_wave_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gungho_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_gungho_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit_pert_off | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit_pert_off | succeeded |\r\n| run_gungho_model_baroclinic-profile_perf-C24_MG_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_gungho_model_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200_realorog-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200_realorog-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_no-timestep-method-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_no-timestep-method-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_runge-kutta-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_runge-kutta-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_semi-implicit-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_semi-implicit-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_gungho_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_tests_integration_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_nwp_gal9-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_nwp_gal9-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jules_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jules_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-seuk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric_atm_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_canned_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_chem_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_chem_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C12_azspice_gnu_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C12_ex1a_cce_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_linear_model_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_zero-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_zero-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_linear_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_mesh_BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP2x2-50000x50000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1500x1500_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_C16_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_rot_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_rot_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_falklands_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_falklands_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_seuk_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_seuk_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_cylinder_xz-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_cylinder_xz-BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_name_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_ngarch_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_physics_schemes_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_physics_schemes_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_shallow_water_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_shallow_water_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_transport_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| site_validator | succeeded |\r\n| style_checker | succeeded |\r\n| test_launch-exe | succeeded |\r\n| validate_rose_meta | succeeded |\r\n
\r\n\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [x] If you have edited any psyclone related code (eg. PsyKAl-lite, Kernal\r\n inteface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [x] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [x] Documentation is complete and accurate\r\n- [x] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n", "number": 57, "repository": "MetOffice/lfric_apps", "title": "Some of Boundary Layer PSyclone-d", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/57"}, "id": "PVTI_lADOAGrG5M4A_OAXzgipJBQ", "labels": ["cla-modified"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["jcsmeto", "mo-lucy-gordon", "christophermaynard", "mo-lucy-gordon"], "sciTech Review": "jcsmeto", "status": "Approved", "title": "Some of Boundary Layer PSyclone-d"}, {"code Review": "yaswant", "content": {"body": "Added FAQ about SSH issues and detatched forks and clarify the SSH setup instructions. I tried to keep the theory of linking to Github documentation, while also giving a more defined list of what needs to be done. \r\n\r\nPrevious heading style didn't like long questions so switched it up. \r\n\r\nBuilt version can be seen here https://wwwspice/~jennifer.hickson/simulation_systems/more_faqs/html/WorkingPractices/gh_authorisation.html and https://wwwspice/~jennifer.hickson/simulation_systems/more_faqs/html/git_faq.html", "number": 537, "repository": "MetOffice/simulation-systems", "title": "add new FAQs", "type": "PullRequest", "url": "https://github.com/MetOffice/simulation-systems/pull/537"}, "id": "PVTI_lADOAGrG5M4A_OAXzgipTjc", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/simulation-systems", "reviewers": ["yaswant"], "status": "Done", "title": "add new FAQs"}, {"assignees": ["mo-lottieturner"], "code Review": "allynt", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @allynt \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (eg. API changes) I have also run the LFRic Apps test suite\r\n using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n# Test Suite Results - lfric_core - t187_adding_logging_to_tweak_iodef/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | t187_adding_logging_to_tweak_iodef/run1 |\r\n| Suite User | charlotte.turner |\r\n| Workflow Start | 2025-12-16T16:48:44 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| lfric_core | [mo-lottieturner/lfric_core@adding_logging_to_tweak_iodef](https://github.com/mo-lottieturner/lfric_core/tree/adding_logging_to_tweak_iodef) | False |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n
\r\n:white_check_mark: succeeded tasks - 372\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| build_coupled_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_coupled_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_coupled_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_coupled_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_coupling_unit_tests_azspice_gnu_32bit | succeeded |\r\n| build_coupling_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_coupling_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| build_coupling_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_driver_unit_tests_azspice_gnu_32bit | succeeded |\r\n| build_driver_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_driver_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| build_driver_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_infrastructure_integration_tests_azspice_gnu_32bit | succeeded |\r\n| build_infrastructure_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_infrastructure_integration_tests_ex1a_cce_32bit | succeeded |\r\n| build_infrastructure_integration_tests_ex1a_cce_64bit | succeeded |\r\n| build_infrastructure_unit_tests_azspice_gnu_32bit | succeeded |\r\n| build_infrastructure_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_infrastructure_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| build_infrastructure_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_io_demo_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_io_demo_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_io_demo_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_io_demo_ex1a_cce_fast-debug-32bit | succeeded |\r\n| build_io_demo_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_io_demo_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_io_demo_ex1a_gnu_fast-debug-32bit | succeeded |\r\n| build_io_demo_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_io_demo_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_io_demo_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_lbc_demo_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lbc_demo_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lbc_demo_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lbc_demo_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric_xios_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_lfric_xios_integration_tests_ex1a_cce_64bit | succeeded |\r\n| build_lfric_xios_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_lfric_xios_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_mesh_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_tools_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_tools_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_mesh_tools_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_mesh_tools_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_mesh_tools_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_tools_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_mesh_tools_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_science_unit_tests_azspice_gnu_32bit | succeeded |\r\n| build_science_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_science_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| build_science_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_simple_diffusion_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_simple_diffusion_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_simple_diffusion_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_simple_diffusion_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_simple_diffusion_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_simple_diffusion_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_simple_diffusion_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_skeleton_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_skeleton_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_skeleton_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_skeleton_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_skeleton_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_skeleton_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_skeleton_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| check_coupled_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_coupled_default-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_coupled_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_coupled_default-C12_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_io_demo_default-C24_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_io_demo_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_io_demo_default-C24_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_io_demo_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_io_demo_multifile-C24_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_io_demo_multifile-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_io_demo_multifile-C24_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_io_demo_multifile-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_io_demo_multifile-C24_ex1a_gnu_fast-debug-32bit | succeeded |\r\n| check_io_demo_multifile-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_ConstantLBC-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_ConstantLBC-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_lbc_demo_ConstantLBC-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_ConstantLBC-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_1x1P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_1x1P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_2x2P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_2x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_8x2P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_8x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_lbc_demo_default-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_default-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_lbc_demo_default-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_default-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c1_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c2_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c2_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c3_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c3_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c3_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-maps_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-maps_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-maps_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op-nonuniform_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op-nonuniform_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op-nonuniform_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-rotated_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-rotated_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-rotated_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_equator-band_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_equator-band_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_equator-band_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_equator_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_equator_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_equator_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_mesh_tools_falklands_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_falklands_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_falklands_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_london-model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_london-model_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_london-model_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_nzlam4_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_nzlam4_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_nzlam4_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-bi-periodic_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-bi-periodic_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-bi-periodic_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-maps_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-maps_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-maps_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-non-periodic_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-non-periodic_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-non-periodic_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-op-lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-op-lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-op-lam_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-centres_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-centres_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-centres_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-nodes_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-nodes_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-nodes_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-points_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-points_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-points_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-x_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-x_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-x_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-y_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-y_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-y_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_polar_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_polar_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_polar_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_uk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_uk_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_uk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_var-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_var-seuk_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_var-seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_simple_diffusion_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_simple_diffusion_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_simple_diffusion_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| check_skeleton_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_skeleton_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_skeleton_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| config_dump_checker | succeeded |\r\n| export-source | succeeded |\r\n| export-source_azspice | succeeded |\r\n| export-source_ex1a | succeeded |\r\n| global_variables_checker | succeeded |\r\n| housekeep_azspice | succeeded |\r\n| housekeep_ex1a | succeeded |\r\n| python_unit_tests | succeeded |\r\n| remote-init_azspice | succeeded |\r\n| remote-init_ex1a | succeeded |\r\n| rose-stem_lint_checker | succeeded |\r\n| run_coupled_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_coupled_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_coupled_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_coupled_default-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_coupled_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_coupled_default-C12_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_coupling_unit_tests_azspice_gnu_32bit | succeeded |\r\n| run_coupling_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_coupling_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| run_coupling_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_driver_unit_tests_azspice_gnu_32bit | succeeded |\r\n| run_driver_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_driver_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| run_driver_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_infrastructure_integration_tests_azspice_gnu_32bit | succeeded |\r\n| run_infrastructure_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_infrastructure_integration_tests_ex1a_cce_32bit | succeeded |\r\n| run_infrastructure_integration_tests_ex1a_cce_64bit | succeeded |\r\n| run_infrastructure_unit_tests_azspice_gnu_32bit | succeeded |\r\n| run_infrastructure_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_infrastructure_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| run_infrastructure_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_io_demo_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_io_demo_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_io_demo_default-C24_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_io_demo_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_io_demo_default-C24_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_io_demo_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_io_demo_multifile-C24_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_io_demo_multifile-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_io_demo_multifile-C24_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_io_demo_multifile-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_io_demo_multifile-C24_ex1a_gnu_fast-debug-32bit | succeeded |\r\n| run_io_demo_multifile-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_io_demo_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_io_demo_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_lbc_demo_ConstantLBC-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_ConstantLBC-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lbc_demo_ConstantLBC-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_ConstantLBC-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_IntegerFields-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_IntegerFields-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lbc_demo_IntegerFields-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_IntegerFields-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_1x1P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_1x1P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_2x2P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_2x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_8x2P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_8x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lbc_demo_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_default-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_default-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lbc_demo_default-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_default-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric_xios_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_lfric_xios_integration_tests_ex1a_cce_64bit | succeeded |\r\n| run_lfric_xios_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_lfric_xios_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_mesh_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_1x1P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_2x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_8x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_canned_cubedsphere_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_canned_planar_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c1_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c2_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c2_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c3_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c3_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c3_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-maps_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-maps_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-maps_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op-nonuniform_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op-nonuniform_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op-nonuniform_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-rotated_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-rotated_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-rotated_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_equator-band_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_equator-band_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_equator-band_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_equator_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_equator_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_equator_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_mesh_tools_falklands_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_falklands_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_falklands_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_london-model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_london-model_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_london-model_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_nzlam4_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_nzlam4_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_nzlam4_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-bi-periodic_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-bi-periodic_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-bi-periodic_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-maps_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-maps_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-maps_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-non-periodic_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-non-periodic_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-non-periodic_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-op-lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-op-lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-op-lam_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-centres_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-centres_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-centres_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-nodes_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-nodes_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-nodes_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-points_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-points_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-points_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-x_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-x_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-x_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-y_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-y_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-y_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_polar_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_polar_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_polar_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_uk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_uk_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_uk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_mesh_tools_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_mesh_tools_var-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_var-seuk_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_var-seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_science_unit_tests_azspice_gnu_32bit | succeeded |\r\n| run_science_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_science_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| run_science_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_simple_diffusion_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_simple_diffusion_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_simple_diffusion_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_simple_diffusion_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_simple_diffusion_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_simple_diffusion_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_simple_diffusion_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_skeleton_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_skeleton_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_skeleton_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_skeleton_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_skeleton_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_skeleton_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_skeleton_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| site_validator | succeeded |\r\n| style_checker | succeeded |\r\n| validate_rose_meta | succeeded |\r\n
\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (eg. PSyKAl-lite, Kernel\r\n interface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 187, "repository": "MetOffice/lfric_core", "title": "Adding logging to tweak_iodef", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/187"}, "id": "PVTI_lADOAGrG5M4A_OAXzgip0Is", "labels": ["cla-signed"], "repository": "https://github.com/MetOffice/lfric_core", "status": "SciTech Review", "title": "Adding logging to tweak_iodef"}, {"content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @stevemullerworth \r\nCode Reviewer: @mike-hobson \r\n\r\n\r\n\r\n\r\nUpdated the readme file at the root of the repository to include a short introduction with some useful links and badges which describe the contents of the repository. The badges are generated by [shields.io](https://shields.io/) a common mechanism for doing so, the content produced by this page is under the [CC0](https://github.com/badges/shields?tab=CC0-1.0-1-ov-file) license.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (eg. API changes) I have also run the LFRic Apps test suite\r\n using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (eg. PSyKAl-lite, Kernel\r\n interface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 188, "repository": "MetOffice/lfric_core", "title": "Update root Readme file.", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/188"}, "id": "PVTI_lADOAGrG5M4A_OAXzgip2Q0", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["yaswant", "mike-hobson"], "status": "Done", "title": "Update root Readme file."}, {"assignees": ["MetBenjaminWent"], "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's style guidelines\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have tests been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any psyclone related code (eg. PsyKAl-lite, Kernal\r\n inteface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 62, "repository": "MetOffice/lfric_apps", "title": "Boundary Layer - bdy_expl2 optimisations", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/62"}, "id": "PVTI_lADOAGrG5M4A_OAXzgiqBQo", "labels": ["cla-required"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "status": "SciTech Review", "title": "Boundary Layer - bdy_expl2 optimisations"}, {"content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: NA\r\nCode Reviewer: @james-bruten-mo \r\n\r\n\r\n\r\nI am removing the user details sectin from issue templates. We can contact someone using their GitHub mention (typing @username), which sends a notification to the user. \r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have tests been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any psyclone related code (eg. PsyKAl-lite, Kernal\r\n inteface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 63, "repository": "MetOffice/lfric_apps", "title": "Remove user contact question from issue template", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/63"}, "id": "PVTI_lADOAGrG5M4A_OAXzgiqEBU", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["james-bruten-mo"], "status": "Done", "title": "Remove user contact question from issue template"}, {"content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: NA\r\nCode Reviewer: @andrewcoughtrie \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (eg. API changes) I have also run the LFRic Apps test suite\r\n using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (eg. PSyKAl-lite, Kernel\r\n interface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [x] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 189, "repository": "MetOffice/lfric_core", "title": "Remove contact details from Issue template", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/189"}, "id": "PVTI_lADOAGrG5M4A_OAXzgiqGFo", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["andrewcoughtrie"], "status": "Done", "title": "Remove contact details from Issue template"}, {"assignees": ["andrewcoughtrie"], "code Review": "stevemullerworth", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @stevemullerworth \r\n\r\n\r\n\r\n\r\nThe GitHub codeowners file has a copy paste error that meant a directory in infrastructure was given owners twice, the second one should have been a different directory.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\nIt isn't actually possible to test this though GitHub is happy the file is a valid CODEOWNERS file.\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (eg. API changes) I have also run the LFRic Apps test suite\r\n using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (eg. PSyKAl-lite, Kernel\r\n interface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [x] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [x] Documentation is complete and accurate\r\n- [x] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n", "number": 190, "repository": "MetOffice/lfric_core", "title": "Fixed duplication of directory ownership, should have been a differen\u2026", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/190"}, "id": "PVTI_lADOAGrG5M4A_OAXzgiqVsY", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["yaswant", "stevemullerworth"], "sciTech Review": "yaswant", "status": "Done", "title": "Fixed duplication of directory ownership, should have been a differen\u2026"}, {"assignees": ["jasonjunweilyu"], "code Review": "MetBenjaminWent", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @mo-alistairp \r\nCode Reviewer: @MetBenjaminWent \r\nCC: @hiker \r\n\r\n\r\n\r\n\r\nThis completes the work of NGARCH stochastic physics optimization for CPU and GPU by migrating from fcm to git to be merged to `main`. Details of the completed work are documented in ticket:543.\r\n\r\n- closes #64 \r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have tests been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\nSince only the rose-stem climate config is now using stochastic physics, I have run the `lfric_atm_clim_gal9_nomg-C12_gadi_intel_fast-debug-64bit` available on NCI GADI. The build and run jobs finished successfully. For KGO verification, since KGOs on GADI have not been updated, I have compared the KGO with the one produced by running the trunk version I forked from and confirmed that they are identical. \r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [x] If you have edited any psyclone related code (eg. PsyKAl-lite, Kernal\r\n inteface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [x] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [x] Documentation is complete and accurate\r\n- [x] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n", "number": 65, "repository": "MetOffice/lfric_apps", "title": "Stochastic Physics CPU and GPU Optimizations - NGARCH", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/65"}, "id": "PVTI_lADOAGrG5M4A_OAXzgiroos", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["mo-alistairp", "mo-alistairp", "MetBenjaminWent", "MetBenjaminWent", "MetBenjaminWent"], "sciTech Review": "mo-alistairp", "status": "Done", "title": "Stochastic Physics CPU and GPU Optimizations - NGARCH"}, {"assignees": ["james-bruten-mo"], "code Review": "paulfield2024", "content": {"body": "Add initial setup files for monc", "number": 1, "repository": "MetOffice/monc", "title": "add files for monc", "type": "PullRequest", "url": "https://github.com/MetOffice/monc/pull/1"}, "id": "PVTI_lADOAGrG5M4A_OAXzgisJ_g", "repository": "https://github.com/MetOffice/monc", "reviewers": ["yaswant", "paulfield2024"], "sciTech Review": "yaswant", "status": "Done", "title": "add files for monc"}, {"code Review": "mo-rickywong", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @andrewcoughtrie \r\nCode Reviewer: @mo-rickywong\r\n\r\n\r\n\r\nIf the configuration file provided to an LFRic application doesn't exist, the application can fail in an uncontrolled way. This change makes the fail more graceful.\r\n\r\n- linked MetOffice/lfric_apps#67\r\n\r\n- closes #167\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [X] I have performed a self-review of my own code\r\n- [X] My code follows the project's\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [X] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [X] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [X] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [X] If required (eg. API changes) I have also run the LFRic Apps test suite\r\n using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [X] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [X] Any new tests have been assigned an appropriate amount of compute resource\r\n and have been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n# Test Suite Results - lfric_core - check_config_name_core/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | check_config_name_core/run1 |\r\n| Suite User | mike.hobson |\r\n| Workflow Start | 2025-12-17T08:03:59 |\r\n| Groups Run | suite_default |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| lfric_core | [mike-hobson/lfric_core@check_config_name](https://github.com/mike-hobson/lfric_core/tree/check_config_name) | False |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n
\r\n:white_check_mark: succeeded tasks - 372\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| build_coupled_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_coupled_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_coupled_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_coupled_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_coupling_unit_tests_azspice_gnu_32bit | succeeded |\r\n| build_coupling_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_coupling_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| build_coupling_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_driver_unit_tests_azspice_gnu_32bit | succeeded |\r\n| build_driver_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_driver_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| build_driver_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_infrastructure_integration_tests_azspice_gnu_32bit | succeeded |\r\n| build_infrastructure_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_infrastructure_integration_tests_ex1a_cce_32bit | succeeded |\r\n| build_infrastructure_integration_tests_ex1a_cce_64bit | succeeded |\r\n| build_infrastructure_unit_tests_azspice_gnu_32bit | succeeded |\r\n| build_infrastructure_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_infrastructure_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| build_infrastructure_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_io_demo_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_io_demo_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_io_demo_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_io_demo_ex1a_cce_fast-debug-32bit | succeeded |\r\n| build_io_demo_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_io_demo_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_io_demo_ex1a_gnu_fast-debug-32bit | succeeded |\r\n| build_io_demo_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_io_demo_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_io_demo_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_lbc_demo_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lbc_demo_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lbc_demo_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lbc_demo_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric_xios_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_lfric_xios_integration_tests_ex1a_cce_64bit | succeeded |\r\n| build_lfric_xios_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_lfric_xios_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_mesh_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_tools_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_tools_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_mesh_tools_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_mesh_tools_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_mesh_tools_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_tools_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_mesh_tools_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_science_unit_tests_azspice_gnu_32bit | succeeded |\r\n| build_science_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_science_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| build_science_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_simple_diffusion_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_simple_diffusion_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_simple_diffusion_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_simple_diffusion_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_simple_diffusion_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_simple_diffusion_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_simple_diffusion_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_skeleton_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_skeleton_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_skeleton_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_skeleton_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_skeleton_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_skeleton_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_skeleton_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| check_coupled_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_coupled_default-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_coupled_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_coupled_default-C12_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_io_demo_default-C24_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_io_demo_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_io_demo_default-C24_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_io_demo_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_io_demo_multifile-C24_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_io_demo_multifile-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_io_demo_multifile-C24_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_io_demo_multifile-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_io_demo_multifile-C24_ex1a_gnu_fast-debug-32bit | succeeded |\r\n| check_io_demo_multifile-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_ConstantLBC-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_ConstantLBC-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_lbc_demo_ConstantLBC-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_ConstantLBC-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_1x1P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_1x1P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_2x2P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_2x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_8x2P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_8x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_lbc_demo_default-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_default-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_lbc_demo_default-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_default-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c1_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c2_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c2_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c3_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c3_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c3_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-maps_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-maps_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-maps_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op-nonuniform_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op-nonuniform_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op-nonuniform_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-rotated_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-rotated_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-rotated_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_equator-band_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_equator-band_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_equator-band_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_equator_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_equator_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_equator_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_mesh_tools_falklands_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_falklands_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_falklands_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_london-model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_london-model_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_london-model_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_nzlam4_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_nzlam4_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_nzlam4_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-bi-periodic_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-bi-periodic_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-bi-periodic_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-maps_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-maps_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-maps_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-non-periodic_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-non-periodic_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-non-periodic_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-op-lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-op-lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-op-lam_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-centres_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-centres_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-centres_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-nodes_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-nodes_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-nodes_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-points_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-points_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-points_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-x_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-x_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-x_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-y_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-y_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-y_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_polar_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_polar_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_polar_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_uk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_uk_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_uk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_var-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_var-seuk_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_var-seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_simple_diffusion_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_simple_diffusion_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_simple_diffusion_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| check_skeleton_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_skeleton_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_skeleton_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| config_dump_checker | succeeded |\r\n| export-source | succeeded |\r\n| export-source_azspice | succeeded |\r\n| export-source_ex1a | succeeded |\r\n| global_variables_checker | succeeded |\r\n| housekeep_azspice | succeeded |\r\n| housekeep_ex1a | succeeded |\r\n| python_unit_tests | succeeded |\r\n| remote-init_azspice | succeeded |\r\n| remote-init_ex1a | succeeded |\r\n| rose-stem_lint_checker | succeeded |\r\n| run_coupled_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_coupled_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_coupled_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_coupled_default-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_coupled_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_coupled_default-C12_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_coupling_unit_tests_azspice_gnu_32bit | succeeded |\r\n| run_coupling_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_coupling_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| run_coupling_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_driver_unit_tests_azspice_gnu_32bit | succeeded |\r\n| run_driver_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_driver_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| run_driver_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_infrastructure_integration_tests_azspice_gnu_32bit | succeeded |\r\n| run_infrastructure_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_infrastructure_integration_tests_ex1a_cce_32bit | succeeded |\r\n| run_infrastructure_integration_tests_ex1a_cce_64bit | succeeded |\r\n| run_infrastructure_unit_tests_azspice_gnu_32bit | succeeded |\r\n| run_infrastructure_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_infrastructure_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| run_infrastructure_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_io_demo_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_io_demo_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_io_demo_default-C24_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_io_demo_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_io_demo_default-C24_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_io_demo_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_io_demo_multifile-C24_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_io_demo_multifile-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_io_demo_multifile-C24_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_io_demo_multifile-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_io_demo_multifile-C24_ex1a_gnu_fast-debug-32bit | succeeded |\r\n| run_io_demo_multifile-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_io_demo_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_io_demo_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_lbc_demo_ConstantLBC-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_ConstantLBC-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lbc_demo_ConstantLBC-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_ConstantLBC-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_IntegerFields-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_IntegerFields-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lbc_demo_IntegerFields-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_IntegerFields-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_1x1P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_1x1P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_2x2P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_2x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_8x2P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_8x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lbc_demo_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_default-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_default-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lbc_demo_default-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_default-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric_xios_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_lfric_xios_integration_tests_ex1a_cce_64bit | succeeded |\r\n| run_lfric_xios_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_lfric_xios_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_mesh_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_1x1P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_2x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_8x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_canned_cubedsphere_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_canned_planar_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c1_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c2_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c2_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c3_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c3_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c3_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-maps_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-maps_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-maps_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op-nonuniform_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op-nonuniform_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op-nonuniform_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-rotated_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-rotated_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-rotated_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_equator-band_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_equator-band_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_equator-band_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_equator_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_equator_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_equator_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_mesh_tools_falklands_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_falklands_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_falklands_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_london-model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_london-model_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_london-model_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_nzlam4_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_nzlam4_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_nzlam4_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-bi-periodic_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-bi-periodic_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-bi-periodic_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-maps_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-maps_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-maps_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-non-periodic_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-non-periodic_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-non-periodic_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-op-lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-op-lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-op-lam_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-centres_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-centres_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-centres_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-nodes_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-nodes_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-nodes_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-points_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-points_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-points_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-x_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-x_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-x_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-y_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-y_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-y_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_polar_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_polar_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_polar_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_uk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_uk_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_uk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_mesh_tools_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_mesh_tools_var-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_var-seuk_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_var-seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_science_unit_tests_azspice_gnu_32bit | succeeded |\r\n| run_science_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_science_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| run_science_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_simple_diffusion_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_simple_diffusion_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_simple_diffusion_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_simple_diffusion_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_simple_diffusion_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_simple_diffusion_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_simple_diffusion_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_skeleton_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_skeleton_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_skeleton_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_skeleton_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_skeleton_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_skeleton_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_skeleton_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| site_validator | succeeded |\r\n| style_checker | succeeded |\r\n| validate_rose_meta | succeeded |\r\n
\r\n\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [X] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (eg. PSyKAl-lite, Kernel\r\n interface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [x] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n", "number": 191, "repository": "MetOffice/lfric_core", "title": "Fail gracefully if the configuration namelist doesn't exist", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/191"}, "id": "PVTI_lADOAGrG5M4A_OAXzgisRIQ", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["stevemullerworth", "andrewcoughtrie", "mo-rickywong", "EdHone", "MatthewHambley", "MatthewHambley"], "sciTech Review": "andrewcoughtrie", "status": "Done", "title": "Fail gracefully if the configuration namelist doesn't exist"}, {"assignees": ["james-bruten-mo"], "content": {"body": "We need 3 checkouts:\r\n\r\n* Base branch - This allows us to check that the CONTRIBUTORS file has been signed on base.\r\n* PR branch without merging - This allows us to check if the CONTRIBUTORS file has been signed on the base branch\r\n* PR branch merged into Base - this allows us to check if the resulting CONTRIBUTORS file will change. If yes, and the developer has signed on base, then fail as modified.\r\n\r\nAgain, targeting develop to test", "number": 47, "repository": "MetOffice/growss", "title": "Remove label", "type": "PullRequest", "url": "https://github.com/MetOffice/growss/pull/47"}, "id": "PVTI_lADOAGrG5M4A_OAXzgisU60", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/growss", "reviewers": ["yaswant", "andrewcoughtrie"], "status": "Done", "title": "Remove label"}, {"content": {"body": "The working-directory syntax takes a relative path ", "number": 48, "repository": "MetOffice/growss", "title": "Remove label", "type": "PullRequest", "url": "https://github.com/MetOffice/growss/pull/48"}, "id": "PVTI_lADOAGrG5M4A_OAXzgisl4Y", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/growss", "status": "Done", "title": "Remove label"}, {"code Review": "mo-rickywong", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @andrewcoughtrie \r\nCode Reviewer: @mo-rickywong \r\n\r\n\r\nThe configuration namelist file is provided from the command line by the infrastructure. to enable graceful failure if the name provided doesn't exist, there have been minor changes to infrastructure routine. This has to be reflected in the calls from all the apps.\r\n\r\n- linked MetOffice/lfric_core#191\r\n\r\n- closes #26 \r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [X] I have performed a self-review of my own code\r\n- [X] My code follows the project's style guidelines\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [X] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [X] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [X] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [X] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [X] Any new tests have been assigned an appropriate amount of compute resource\r\n and have tests been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n# Test Suite Results - lfric_apps - check_config_name_apps/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | check_config_name_apps/run1 |\r\n| Suite User | mike.hobson |\r\n| Workflow Start | 2025-12-17T07:28:49 |\r\n| Groups Run | suite_default |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [mike-hobson/lfric_apps@check_config_name](https://github.com/mike-hobson/lfric_apps/tree/check_config_name) | False |\r\n| lfric_core | [mike-hobson/lfric_core@check_config_name](https://github.com/mike-hobson/lfric_core/tree/check_config_name) | False |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n
\r\n:white_check_mark: succeeded tasks - 1106\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| build_adjoint_tests_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_azspice_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_ex1a_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_adjoint_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_coupled_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gravity_wave_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_gravity_wave_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_gravity_wave_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_gravity_wave_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_gravity_wave_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gungho_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_gungho_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| build_gungho_model_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_model_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| build_gungho_model_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_gungho_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_tests_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_tests_integration_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_jules_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric2lfric_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric2lfric_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_full-debug-32bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_production-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_fast-debug-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_full-debug-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_production-32bit | succeeded |\r\n| build_lfric_coupled_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_linear_model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_model_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_linear_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_mesh_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_name_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_ngarch_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_ngarch_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_ngarch_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_ngarch_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_physics_schemes_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_physics_schemes_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_shallow_water_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_shallow_water_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_shallow_water_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_shallow_water_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_solver_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_solver_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_solver_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_transport_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_transport_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_transport_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| check_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200_realorog-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200_realorog-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-nrun-v-crun | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-nrun-v-crun | succeeded |\r\n| check_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_runge-kutta-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_runge-kutta-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_semi-implicit-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_semi-implicit-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_nwp_gal9-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_nwp_gal9-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jules_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-seuk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_chem_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_chem_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9_debug-C12_azspice_gnu_full-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_debug-C12_ex1a_cce_full-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_noukca_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_noukca_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_zero-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_zero-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| config_dump_checker | succeeded |\r\n| export-source | succeeded |\r\n| export-source_azspice | succeeded |\r\n| export-source_ex1a | succeeded |\r\n| export-weights_azspice | succeeded |\r\n| export-weights_ex1a | succeeded |\r\n| fcm_make2_drivers | succeeded |\r\n| fcm_make2_lfric_coupled_ocean_ex1a_cce_fast-debug-64bit | succeeded |\r\n| fcm_make_drivers | succeeded |\r\n| fcm_make_lfric_coupled_ocean_ex1a_cce_fast-debug-64bit | succeeded |\r\n| fcm_make_lfric_coupled_river_ex1a_cce_fast-debug-64bit | succeeded |\r\n| generate_weights_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet_lbc_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-falklands_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_azspice_weightgen_script | succeeded |\r\n| global_variables_checker | succeeded |\r\n| housekeep_azspice | succeeded |\r\n| housekeep_ex1a | succeeded |\r\n| local_build_test | succeeded |\r\n| macro_chains_checker | succeeded |\r\n| perftools-export_gungho_model_baroclinic-profile_perf-C24_MG_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| pert_compare_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| pert_compare_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_cylinder_xz-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_cylinder_xz-BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| python_unit_tests | succeeded |\r\n| remote-init_azspice | succeeded |\r\n| remote-init_ex1a | succeeded |\r\n| rose-stem_lint_checker | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_adjoint_tests_canned_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_canned_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_azspice_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_ex1a_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_varying_ls-C12_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_adjoint_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_coupled_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gravity_wave_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_gravity_wave_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gungho_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_gungho_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit_pert_off | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit_pert_off | succeeded |\r\n| run_gungho_model_baroclinic-profile_perf-C24_MG_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_gungho_model_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200_realorog-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200_realorog-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_no-timestep-method-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_no-timestep-method-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_runge-kutta-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_runge-kutta-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_semi-implicit-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_semi-implicit-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_gungho_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_tests_integration_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_nwp_gal9-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_nwp_gal9-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jules_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jules_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-seuk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric_atm_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_canned_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_chem_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_chem_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C12_azspice_gnu_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C12_ex1a_cce_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_linear_model_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_zero-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_zero-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_linear_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_mesh_BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP2x2-50000x50000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1500x1500_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_C16_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_rot_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_rot_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_falklands_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_falklands_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_seuk_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_seuk_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_cylinder_xz-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_cylinder_xz-BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_name_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_ngarch_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_physics_schemes_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_physics_schemes_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_shallow_water_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_shallow_water_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_transport_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| site_validator | succeeded |\r\n| style_checker | succeeded |\r\n| test_launch-exe | succeeded |\r\n| validate_rose_meta | succeeded |\r\n
\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [X] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [X] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any psyclone related code (eg. PsyKAl-lite, Kernal\r\n inteface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [x] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [x] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n", "number": 67, "repository": "MetOffice/lfric_apps", "title": "Check config name", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/67"}, "id": "PVTI_lADOAGrG5M4A_OAXzgis7KA", "labels": ["enhancement", "Linked Core", "cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["mo-rickywong"], "sciTech Review": "andrewcoughtrie", "status": "Done", "title": "Check config name"}, {"assignees": ["james-bruten-mo"], "content": {"body": "Use bash -l given recent changes to login scripts\r\nAlso delete deprecated fcm nightly script", "number": 149, "repository": "MetOffice/SimSys_Scripts", "title": "update to use bash -l", "type": "PullRequest", "url": "https://github.com/MetOffice/SimSys_Scripts/pull/149"}, "id": "PVTI_lADOAGrG5M4A_OAXzgis_zo", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/SimSys_Scripts", "reviewers": ["t00sa"], "status": "Done", "title": "update to use bash -l"}, {"content": {"body": "# PR Summary\r\n\r\n**NB - this pull request is currently a placeholder. I am in the process of porting the changes from my mosrs branch to Github.** \r\n\r\nThis pull request summarises changes to the INFERNO fire module made in order to couple it with the WHAM model of human fire use and management. This improves INFERNO's performance significantly. \r\n\r\nEvaluation of the model can be found here (in submission). \r\n[Evaluation_19_11_2025.docx](https://github.com/user-attachments/files/24216215/Evaluation_19_11_2025.docx)\r\n\r\n\r\nThe full overview of WHAM! and the structure of its coupling is described in these three papers:\r\n\r\nModel description: https://gmd.copernicus.org/articles/17/3993/2024/\r\nPrototype coupling and calibration: https://agupubs.onlinelibrary.wiley.com/doi/full/10.1029/2024EF004770\r\nFuture model runs: https://egusphere.copernicus.org/preprints/2025/egusphere-2025-3728/\r\n\r\nAn additional paper, detailing the online coupling is close to submission. \r\n\r\nAlthough this PR allows WHAM! to be coupled with JULES in a dynamic way, it is not a full tight coupling (yet). Rather, outputs from the WHAM! model are passed as ancillaries. These are then updated in line with the changing distribution of plant functional types in JULES. \r\n\r\nSci/Tech Reviewer: Eddy Robertson\r\nCode Reviewer: \r\n\r\n\r\n\r\n\r\n\r\nThere are three fundamental changes made to the code. \r\n\r\n1. The first (ignitions) is toggled using a new ignitions mode\r\n2. The second (managed fire) is on a new switch \"l_inferno_wham\"\r\n3. The third (fire line intensity) is able to run with / without WHAM!. It is set using a new \"fire_mortality_method\" integer that maintains current functionality. \r\n\r\n1) Ignitions mode\r\n- A new ignitions mode is added (4). This specifies that ignitions, or unmanaged fires, are taken from WHAM! outputs. These are the sum of accidental anthropogenic fires, arson (fire use as a weapon under land use conflict) and escaped fires - managed fires that grow out of control.\r\n- Importantly, ignitions from WHAM! take account of the seasonality of human fire use: i.e. they vary monthly, rather than being uniform across the calendar year. \r\n- This also incorporates WHAM! projections of fire suppression (i.e. fire fighting). \r\n\r\n2) Managed fire\r\n- As much as 50% of global burned area is generated by small anthropogenic fires, typically used in livestock farming and for hunting/gathering in savanna ecosystems. \r\n- WHAM! adds these into the model. Setting l_inferno_wham to True switches this functionality on. \r\n- In addition, it also adds the use of road density to adjust mean fire size. This is a simple representation of fragmentation that should increase fire size & burned area in remote regions, whilst reducing it where there is widespread human activity. \r\n- Managed fire use varies month to month in line with WHAM!'s projection of fire use seasonality. (as with ignitions). \r\n- Human fire use for fire risk reduction (i.e. prescribed fire or cultural burning) changes dynamically with tree cover. See, it is lower in wet tropical forests than open savannas. This is updated dynamically based on the PFT distribution at each time step. \r\n\r\n3) Fire line intensity\r\nWork by Olivia Haas (https://iopscience.iop.org/article/10.1088/1748-9326/ac6a69) has demonstrated that fire intensity (Watts emitted per m2 burned) has different drivers to burned area. \r\n\r\nFire intensity is closely related to vegetation mortality. Therefore, a new intensity algorithm was developed that captures the spatio-temporal variation in mortality. This replaces the current parameterisation of mortality as the product of burned area and a scalar value per PFT. \r\n\r\nA new variable \"fire_mortality_method\" is defined with three levels:\r\n1) The original mortality method (per Burton 2019)\r\n2) The Burton method adjusted for saturation moisture. This provides a boundary condition around tropical forests. Too much mortality in tropical forests has been an issue in INFERNO. \r\n3) The new fireline intensity algorithm. I have added a supplementary file that shows the relationships used in this. Important to note is that this can be run with / without WHAM. So, setting fire_mortality_method = 3 & l_inferno_wham = .false. will replace WHAM! inputs into the intensity algorithm with a function of population density. \r\n\r\n[SI1_Intensity_Algorithm_15122025.docx](https://github.com/user-attachments/files/24216049/SI1_Intensity_Algorithm_15122025.docx)\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's style guidelines\r\n- [ ] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n- [ ] If editing `rose-meta/jules-shared` then have you supplied a linked UM PR?\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the JULES rose-stem suite\r\n- [ ] If shared files have been modified, I have run the UM and LFRic Apps rose\r\n stem suites\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## Approvals\r\n\r\nPlease request all relevant approvals. See the CodeOwners.txt file for section\r\nowners.\r\n\r\n### Technical\r\n\r\n- [ ] JULES Code Owner\r\n- [ ] OpenMP\r\n- [ ] River Routing\r\n- [ ] Rose Stem\r\n- [ ] Rose Metadata\r\n- [ ] Upgrade Macros\r\n\r\n### Scientific\r\n\r\n- [ ] Surface\r\n- [ ] Hydrology\r\n- [ ] Vegetation\r\n- [ ] Veg3 RED Demography\r\n- [ ] Biogechemistry\r\n- [ ] Biogenic fluxes\r\n- [x ] Fire\r\n- [ ] Lakes\r\n- [ ] Evaluation\r\n- [ ] Imogen\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 22, "repository": "MetOffice/jules", "title": "Coupling of WHAM! model of human fire use and management with INFERNO", "type": "PullRequest", "url": "https://github.com/MetOffice/jules/pull/22"}, "id": "PVTI_lADOAGrG5M4A_OAXzgitYHw", "labels": ["cla-signed"], "repository": "https://github.com/MetOffice/jules", "status": "SciTech Review", "title": "Coupling of WHAM! model of human fire use and management with INFERNO"}, {"assignees": ["james-bruten-mo"], "code Review": "jennyhickson", "content": {"body": "Andy suggested preventing updates in rulesets for the majority of a release cycle to prevent accidental targeting of the stable branch.\r\nAdd a note to the release instructions to re-enable updates.", "number": 540, "repository": "MetOffice/simulation-systems", "title": "add note to enable stable", "type": "PullRequest", "url": "https://github.com/MetOffice/simulation-systems/pull/540"}, "id": "PVTI_lADOAGrG5M4A_OAXzgitc0Q", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/simulation-systems", "reviewers": ["jennyhickson"], "status": "Done", "title": "add note to enable stable"}, {"assignees": ["tommbendall"], "code Review": "allynt", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @atb1995 \r\nCode Reviewer: @allynt \r\n\r\n\r\n\r\n\r\n\r\nThe `sample_physics_winds_correction` option is broken (see Issue #66). This had not been detected as it is not currently covered by the test-suite.\r\n\r\nThis PR fixes this option and improves on the current situation by making the following changes:\r\n- input fields to the `w3_to_w2_correction_kernel` are declared to depth 2: _this kernel reads from a field with a depth 1 halo and is an INC kernel, so fields being read using stencils must be declared to depth 2 (they are only depth 1 by default)_\r\n- I have unified the `sample_physics_winds_correction` option with the other code to perform the `sample_physics_winds`: _the `sample_physics_winds_correction` option should simply activate the correction routines, but it previously also changed the method of sampling_\r\n- it picks up a correction to the `w3_to_w2_correction` kernel from the Linked PR: https://github.com/MetOffice/lfric_core/pull/221 \r\n- I have turned this option on in an exoplanet rose-stem test to ensure that it is covered by the test-suite\r\n\r\n- Linked to: MetOffice/lfric_core#221\r\n\r\n\r\n\r\n\r\n- Closes: #66 \r\n\r\nTo demonstrate that this is working, I have created an artificial test in which a zonal wind component in W3 was specified to vary with latitude. This was then mapped to W2, with and without the correction option. The following plots show that grid imprinting on the meridional panel edges has been improved.\r\n\r\nSee the small divots on the meridional panel edges:\r\n\"sample_phys_correction\"\r\n\r\nAnd zoomed in on a panel edge:\r\n\"sample_phys_correction_zoom\"\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource\r\n and have tests been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n# Test Suite Results - lfric_apps - smp_phys_wind_correct/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [smp_phys_wind_correct/run1](https://cylchub/services/cylc-review/cycles/thomas.bendall/?suite=smp_phys_wind_correct%2Frun1) |\r\n| Suite User | thomas.bendall |\r\n| Workflow Start | 2026-01-15T15:18:33 |\r\n| Groups Run | developer', 'lfric_atm_extra |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [tommbendall/lfric_apps@TBendall/StochPhysFixes](https://github.com/tommbendall/lfric_apps/tree/TBendall/StochPhysFixes) | False |\r\n| lfric_core | [tommbendall/lfric_core@TBendall/smp_phys_wind_correct](https://github.com/tommbendall/lfric_core/tree/TBendall/smp_phys_wind_correct) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 1256\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any psyclone related code (eg. PsyKAl-lite, Kernal\r\n inteface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 69, "repository": "MetOffice/lfric_apps", "title": "Correct the sample_physics_winds_correction option", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/69"}, "id": "PVTI_lADOAGrG5M4A_OAXzgitsto", "labels": ["bug", "Linked Core", "cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["atb1995", "allynt"], "sciTech Review": "atb1995", "status": "Code Review", "title": "Correct the sample_physics_winds_correction option"}, {"assignees": ["james-bruten-mo"], "content": {"body": "Respect the `.gitignore` when rsyncing local clones for the test suite. Not doing this is causing issues when the local build script has been run.\r\nI've tested that this behaves as expected by running with the test suite from a clone with the local build output. The gitignore'd directories don't get copied. Also tested from /var/tmp to ensure it works for local filesystems.", "number": 150, "repository": "MetOffice/SimSys_Scripts", "title": "respect gitignore", "type": "PullRequest", "url": "https://github.com/MetOffice/SimSys_Scripts/pull/150"}, "id": "PVTI_lADOAGrG5M4A_OAXzgitymk", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/SimSys_Scripts", "reviewers": ["t00sa"], "status": "Done", "title": "respect gitignore"}, {"assignees": ["yaswant"], "code Review": "MatthewHambley", "content": {"body": "Some tidying up of the repo:\r\n- remove `rose_ana`\r\n- add GitHub actions workflows for Python and CLA checks (excludes if changes are only in rose which are inherited from [metomi/rose](https://github.com/metomi/rose/tree/master/metomi/rose).", "number": 2, "repository": "MetOffice/rose_picker", "title": "Tidy up repo and add checks", "type": "PullRequest", "url": "https://github.com/MetOffice/rose_picker/pull/2"}, "id": "PVTI_lADOAGrG5M4A_OAXzgiuLSs", "labels": ["enhancement"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/rose_picker", "reviewers": ["MatthewHambley", "MatthewHambley", "james-bruten-mo", "james-bruten-mo"], "sciTech Review": "james-bruten-mo", "status": "Done", "title": "Tidy up repo and add checks"}, {"assignees": ["DrTVockerodtMO"], "code Review": "james-bruten-mo", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @tom-j-h \r\nCode Reviewer: @james-bruten-mo \r\n\r\n\r\n\r\n\r\n\r\nPrevious PR #44 broke on the web so I re-branched. I modified two of the adjoint kernels (one via a patch, the other as source code) to produce the correct results when using `log_space = .true.`. The `rose-stem` and example configurations have been edited with the values used in the benchmarking branch.\r\n\r\n\r\n\r\n\r\n- Fixes #40 \r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource\r\n and have tests been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n# Test Suite Results - lfric_apps - lfric_apps_adjoint_log_space_fix/run9\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | lfric_apps_adjoint_log_space_fix/run9 |\r\n| Suite User | terence.vockerodt |\r\n| Workflow Start | 2025-12-16T12:02:36 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [DrTVockerodtMO/lfric_apps_adjoint_log_space_fix@lfric_apps_adjoint_log_space_fix_branch](https://github.com/DrTVockerodtMO/lfric_apps_adjoint_log_space_fix/tree/lfric_apps_adjoint_log_space_fix_branch) | False |\r\n| lfric_core | [MetOffice/lfric_core@2025.12.1](https://github.com/MetOffice/lfric_core/tree/2025.12.1) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n
\r\n:white_check_mark: succeeded tasks - 1106\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| build_adjoint_tests_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_azspice_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_ex1a_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_adjoint_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_coupled_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gravity_wave_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_gravity_wave_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_gravity_wave_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_gravity_wave_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_gravity_wave_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gungho_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_gungho_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| build_gungho_model_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_model_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| build_gungho_model_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_gungho_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_tests_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_tests_integration_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_jules_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric2lfric_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric2lfric_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_full-debug-32bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_production-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_fast-debug-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_full-debug-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_production-32bit | succeeded |\r\n| build_lfric_coupled_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_linear_model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_model_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_linear_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_mesh_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_name_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_ngarch_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_ngarch_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_ngarch_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_ngarch_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_physics_schemes_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_physics_schemes_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_shallow_water_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_shallow_water_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_shallow_water_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_shallow_water_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_solver_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_solver_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_solver_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_transport_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_transport_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_transport_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| check_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200_realorog-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200_realorog-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-nrun-v-crun | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-nrun-v-crun | succeeded |\r\n| check_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_runge-kutta-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_runge-kutta-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_semi-implicit-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_semi-implicit-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_nwp_gal9-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_nwp_gal9-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jules_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-seuk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_chem_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_chem_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9_debug-C12_azspice_gnu_full-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_debug-C12_ex1a_cce_full-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_noukca_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_noukca_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_zero-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_zero-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| config_dump_checker | succeeded |\r\n| export-source | succeeded |\r\n| export-source_azspice | succeeded |\r\n| export-source_ex1a | succeeded |\r\n| export-weights_azspice | succeeded |\r\n| export-weights_ex1a | succeeded |\r\n| fcm_make2_drivers | succeeded |\r\n| fcm_make2_lfric_coupled_ocean_ex1a_cce_fast-debug-64bit | succeeded |\r\n| fcm_make_drivers | succeeded |\r\n| fcm_make_lfric_coupled_ocean_ex1a_cce_fast-debug-64bit | succeeded |\r\n| fcm_make_lfric_coupled_river_ex1a_cce_fast-debug-64bit | succeeded |\r\n| generate_weights_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet_lbc_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-falklands_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_azspice_weightgen_script | succeeded |\r\n| global_variables_checker | succeeded |\r\n| housekeep_azspice | succeeded |\r\n| housekeep_ex1a | succeeded |\r\n| local_build_test | succeeded |\r\n| macro_chains_checker | succeeded |\r\n| perftools-export_gungho_model_baroclinic-profile_perf-C24_MG_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| pert_compare_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| pert_compare_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_cylinder_xz-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_cylinder_xz-BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| python_unit_tests | succeeded |\r\n| remote-init_azspice | succeeded |\r\n| remote-init_ex1a | succeeded |\r\n| rose-stem_lint_checker | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_adjoint_tests_canned_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_canned_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_azspice_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_ex1a_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_varying_ls-C12_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_adjoint_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_coupled_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gravity_wave_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_gravity_wave_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gungho_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_gungho_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit_pert_off | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit_pert_off | succeeded |\r\n| run_gungho_model_baroclinic-profile_perf-C24_MG_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_gungho_model_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200_realorog-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200_realorog-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_no-timestep-method-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_no-timestep-method-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_runge-kutta-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_runge-kutta-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_semi-implicit-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_semi-implicit-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_gungho_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_tests_integration_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_nwp_gal9-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_nwp_gal9-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jules_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jules_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-seuk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric_atm_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_canned_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_chem_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_chem_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C12_azspice_gnu_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C12_ex1a_cce_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_linear_model_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_zero-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_zero-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_linear_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_mesh_BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP2x2-50000x50000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1500x1500_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_C16_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_rot_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_rot_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_falklands_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_falklands_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_seuk_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_seuk_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_cylinder_xz-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_cylinder_xz-BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_name_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_ngarch_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_physics_schemes_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_physics_schemes_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_shallow_water_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_shallow_water_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_transport_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| site_validator | succeeded |\r\n| style_checker | succeeded |\r\n| test_launch-exe | succeeded |\r\n| validate_rose_meta | succeeded |\r\n
\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [x] If you have edited any psyclone related code (eg. PsyKAl-lite, Kernal\r\n inteface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 71, "repository": "MetOffice/lfric_apps", "title": "Fixing adjoint failures with transport log_space config variable set to true", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/71"}, "id": "PVTI_lADOAGrG5M4A_OAXzgiuvmk", "labels": ["bug", "cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["allynt", "tom-j-h"], "sciTech Review": "tom-j-h", "status": "Done", "title": "Fixing adjoint failures with transport log_space config variable set to true"}, {"assignees": ["DrTVockerodtMO"], "code Review": "harry-shepherd", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @mo-joshuacolclough \r\nCode Reviewer: @harry-shepherd \r\n\r\n\r\n\r\n\r\n\r\nPR #59 had a weird commit history so I re-branched to make reviewing simpler. Introduces the lookup table cache, with an introductory interface change to include it into the adjoint tests for the lookup table (stencil) kernels. To keep things agile, the full interface changes necessary to get the speedup described in the related issue will be relegated to another ticket.\r\n\r\n- Fixes #58 \r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource\r\n and have tests been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n# Test Suite Results - lfric_apps - lfric_apps_adjoint_lookup_cache_part_1/run2\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | lfric_apps_adjoint_lookup_cache_part_1/run2 |\r\n| Suite User | terence.vockerodt |\r\n| Workflow Start | 2025-12-16T14:48:16 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [DrTVockerodtMO/lfric_apps_adjoint_lookup_cache_part_1@lfric_apps_adjoint_lookup_cache_part_1_branch](https://github.com/DrTVockerodtMO/lfric_apps_adjoint_lookup_cache_part_1/tree/lfric_apps_adjoint_lookup_cache_part_1_branch) | False |\r\n| lfric_core | [MetOffice/lfric_core@2025.12.1](https://github.com/MetOffice/lfric_core/tree/2025.12.1) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n
\r\n:white_check_mark: succeeded tasks - 1106\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| build_adjoint_tests_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_azspice_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_ex1a_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_adjoint_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_coupled_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gravity_wave_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_gravity_wave_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_gravity_wave_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_gravity_wave_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_gravity_wave_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gungho_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_gungho_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| build_gungho_model_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_model_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| build_gungho_model_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_gungho_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_tests_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_tests_integration_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_jules_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric2lfric_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric2lfric_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_full-debug-32bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_production-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_fast-debug-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_full-debug-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_production-32bit | succeeded |\r\n| build_lfric_coupled_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_linear_model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_model_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_linear_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_mesh_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_name_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_ngarch_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_ngarch_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_ngarch_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_ngarch_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_physics_schemes_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_physics_schemes_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_shallow_water_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_shallow_water_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_shallow_water_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_shallow_water_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_solver_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_solver_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_solver_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_transport_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_transport_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_transport_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| check_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200_realorog-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200_realorog-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-nrun-v-crun | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-nrun-v-crun | succeeded |\r\n| check_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_runge-kutta-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_runge-kutta-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_semi-implicit-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_semi-implicit-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_nwp_gal9-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_nwp_gal9-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jules_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-seuk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_chem_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_chem_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9_debug-C12_azspice_gnu_full-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_debug-C12_ex1a_cce_full-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_noukca_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_noukca_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_zero-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_zero-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| config_dump_checker | succeeded |\r\n| export-source | succeeded |\r\n| export-source_azspice | succeeded |\r\n| export-source_ex1a | succeeded |\r\n| export-weights_azspice | succeeded |\r\n| export-weights_ex1a | succeeded |\r\n| fcm_make2_drivers | succeeded |\r\n| fcm_make2_lfric_coupled_ocean_ex1a_cce_fast-debug-64bit | succeeded |\r\n| fcm_make_drivers | succeeded |\r\n| fcm_make_lfric_coupled_ocean_ex1a_cce_fast-debug-64bit | succeeded |\r\n| fcm_make_lfric_coupled_river_ex1a_cce_fast-debug-64bit | succeeded |\r\n| generate_weights_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet_lbc_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-falklands_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_azspice_weightgen_script | succeeded |\r\n| global_variables_checker | succeeded |\r\n| housekeep_azspice | succeeded |\r\n| housekeep_ex1a | succeeded |\r\n| local_build_test | succeeded |\r\n| macro_chains_checker | succeeded |\r\n| perftools-export_gungho_model_baroclinic-profile_perf-C24_MG_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| pert_compare_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| pert_compare_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_cylinder_xz-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_cylinder_xz-BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| python_unit_tests | succeeded |\r\n| remote-init_azspice | succeeded |\r\n| remote-init_ex1a | succeeded |\r\n| rose-stem_lint_checker | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_adjoint_tests_canned_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_canned_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_azspice_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_ex1a_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_varying_ls-C12_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_adjoint_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_coupled_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gravity_wave_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_gravity_wave_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gungho_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_gungho_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit_pert_off | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit_pert_off | succeeded |\r\n| run_gungho_model_baroclinic-profile_perf-C24_MG_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_gungho_model_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200_realorog-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200_realorog-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_no-timestep-method-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_no-timestep-method-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_runge-kutta-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_runge-kutta-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_semi-implicit-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_semi-implicit-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_gungho_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_tests_integration_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_nwp_gal9-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_nwp_gal9-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jules_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jules_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-seuk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric_atm_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_canned_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_chem_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_chem_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C12_azspice_gnu_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C12_ex1a_cce_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_linear_model_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_zero-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_zero-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_linear_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_mesh_BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP2x2-50000x50000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1500x1500_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_C16_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_rot_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_rot_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_falklands_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_falklands_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_seuk_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_seuk_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_cylinder_xz-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_cylinder_xz-BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_name_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_ngarch_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_physics_schemes_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_physics_schemes_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_shallow_water_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_shallow_water_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_transport_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| site_validator | succeeded |\r\n| style_checker | succeeded |\r\n| test_launch-exe | succeeded |\r\n| validate_rose_meta | succeeded |\r\n
\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [x] If you have edited any psyclone related code (eg. PsyKAl-lite, Kernal\r\n inteface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [x] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [x] Documentation is complete and accurate\r\n- [x] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n", "number": 72, "repository": "MetOffice/lfric_apps", "title": "Introducing cache for adjoint lookup tables", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/72"}, "id": "PVTI_lADOAGrG5M4A_OAXzgiuzc0", "labels": ["enhancement", "cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["harry-shepherd", "mo-joshuacolclough"], "sciTech Review": "mo-joshuacolclough", "status": "Done", "title": "Introducing cache for adjoint lookup tables"}, {"content": {"body": "Reverts MetOffice/SimSys_Scripts#150", "number": 151, "repository": "MetOffice/SimSys_Scripts", "title": "Revert \"respect gitignore\"", "type": "PullRequest", "url": "https://github.com/MetOffice/SimSys_Scripts/pull/151"}, "id": "PVTI_lADOAGrG5M4A_OAXzgivXGk", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/SimSys_Scripts", "status": "Done", "title": "Revert \"respect gitignore\""}, {"content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @yaswant \r\n\r\n\r\n\r\n\r\n\r\nJust a quick fix to correct Momentum™ to Momentum®.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid understanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite\r\n using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel\r\n interface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [x] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [x] Documentation is complete and accurate\r\n- [x] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n", "number": 193, "repository": "MetOffice/lfric_core", "title": "Change TM to R", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/193"}, "id": "PVTI_lADOAGrG5M4A_OAXzgivYho", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["yaswant"], "status": "Done", "title": "Change TM to R"}, {"assignees": ["james-bruten-mo"], "content": {"body": "Try again from #150, this time using `--exclude` for each potential output from local builds. I've tested with both apps and core this time", "number": 152, "repository": "MetOffice/SimSys_Scripts", "title": "Rsync exclude", "type": "PullRequest", "url": "https://github.com/MetOffice/SimSys_Scripts/pull/152"}, "id": "PVTI_lADOAGrG5M4A_OAXzgivsg8", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/SimSys_Scripts", "reviewers": ["t00sa"], "status": "Done", "title": "Rsync exclude"}, {"assignees": ["tommbendall", "mo-marqh"], "code Review": "mo-marqh", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @jameskent-metoffice \r\nCode Reviewer: @mo-marqh \r\n\r\n\r\n\r\nThis PR makes some changes to the plotting scripts used for the baroclinic wave and Straka bubble tests in the `gungho_model` test suite, ensuring that the plots are sensible with run in the Met Office azspice and HPC environments.\r\n\r\nI have refrained from wholesale rewriting of the scripts! But the change can be summarised as ensuring that everything is plotted on the appropriate `matplotlib.pyplot` `Axes` object, rather than using a mixture of `ax` and `plt`.\r\n\r\nThis fixes Issue #70.\r\n\r\nThe new plots are:\r\n\r\n\"baroclinic_plot-theta-time864000\r\n\r\n\"straka_x_theta_T000180\"\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource\r\n and have tests been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n# Test Suite Results - lfric_apps - gungho_plot_fix/run4\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | gungho_plot_fix/run4 |\r\n| Suite User | thomas.bendall |\r\n| Workflow Start | 2026-01-12T17:08:40 |\r\n| Groups Run | suite_default |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [tommbendall/lfric_apps@TBendall/gungho_plot_fix](https://github.com/tommbendall/lfric_apps/tree/TBendall/gungho_plot_fix) | False |\r\n| lfric_core | [MetOffice/lfric_core@2025.12.1](https://github.com/MetOffice/lfric_core/tree/2025.12.1) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n
\r\n:white_check_mark: succeeded tasks - 1106\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| build_adjoint_tests_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_azspice_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_ex1a_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_adjoint_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_coupled_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gravity_wave_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_gravity_wave_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_gravity_wave_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_gravity_wave_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_gravity_wave_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gungho_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_gungho_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| build_gungho_model_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_model_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| build_gungho_model_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_gungho_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_tests_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_tests_integration_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_jules_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric2lfric_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric2lfric_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_full-debug-32bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_production-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_fast-debug-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_full-debug-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_production-32bit | succeeded |\r\n| build_lfric_coupled_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_linear_model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_model_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_linear_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_mesh_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_name_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_ngarch_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_ngarch_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_ngarch_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_ngarch_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_physics_schemes_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_physics_schemes_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_shallow_water_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_shallow_water_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_shallow_water_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_shallow_water_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_solver_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_solver_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_solver_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_transport_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_transport_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_transport_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| check_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200_realorog-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200_realorog-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-nrun-v-crun | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-nrun-v-crun | succeeded |\r\n| check_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_runge-kutta-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_runge-kutta-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_semi-implicit-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_semi-implicit-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_nwp_gal9-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_nwp_gal9-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jules_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-seuk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_chem_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_chem_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9_debug-C12_azspice_gnu_full-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_debug-C12_ex1a_cce_full-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_noukca_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_noukca_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_zero-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_zero-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| config_dump_checker | succeeded |\r\n| export-source | succeeded |\r\n| export-source_azspice | succeeded |\r\n| export-source_ex1a | succeeded |\r\n| export-weights_azspice | succeeded |\r\n| export-weights_ex1a | succeeded |\r\n| fcm_make2_drivers | succeeded |\r\n| fcm_make2_lfric_coupled_ocean_ex1a_cce_fast-debug-64bit | succeeded |\r\n| fcm_make_drivers | succeeded |\r\n| fcm_make_lfric_coupled_ocean_ex1a_cce_fast-debug-64bit | succeeded |\r\n| fcm_make_lfric_coupled_river_ex1a_cce_fast-debug-64bit | succeeded |\r\n| generate_weights_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet_lbc_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-falklands_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_azspice_weightgen_script | succeeded |\r\n| global_variables_checker | succeeded |\r\n| housekeep_azspice | succeeded |\r\n| housekeep_ex1a | succeeded |\r\n| local_build_test | succeeded |\r\n| macro_chains_checker | succeeded |\r\n| perftools-export_gungho_model_baroclinic-profile_perf-C24_MG_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| pert_compare_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| pert_compare_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_cylinder_xz-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_cylinder_xz-BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| python_unit_tests | succeeded |\r\n| remote-init_azspice | succeeded |\r\n| remote-init_ex1a | succeeded |\r\n| rose-stem_lint_checker | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_adjoint_tests_canned_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_canned_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_azspice_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_ex1a_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_varying_ls-C12_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_adjoint_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_coupled_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gravity_wave_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_gravity_wave_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gungho_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_gungho_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit_pert_off | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit_pert_off | succeeded |\r\n| run_gungho_model_baroclinic-profile_perf-C24_MG_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_gungho_model_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200_realorog-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200_realorog-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_no-timestep-method-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_no-timestep-method-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_runge-kutta-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_runge-kutta-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_semi-implicit-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_semi-implicit-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_gungho_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_tests_integration_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_nwp_gal9-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_nwp_gal9-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jules_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jules_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-seuk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric_atm_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_canned_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_chem_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_chem_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C12_azspice_gnu_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C12_ex1a_cce_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_linear_model_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_zero-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_zero-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_linear_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_mesh_BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP2x2-50000x50000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1500x1500_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_C16_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_rot_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_rot_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_falklands_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_falklands_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_seuk_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_seuk_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_cylinder_xz-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_cylinder_xz-BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_name_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_ngarch_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_physics_schemes_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_physics_schemes_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_shallow_water_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_shallow_water_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_transport_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| site_validator | succeeded |\r\n| style_checker | succeeded |\r\n| test_launch-exe | succeeded |\r\n| validate_rose_meta | succeeded |\r\n
\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [x] If you have edited any psyclone related code (eg. PsyKAl-lite, Kernal\r\n inteface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [x] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [x] Documentation is complete and accurate\r\n- [x] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n\r\n", "number": 74, "repository": "MetOffice/lfric_apps", "title": "Fix Gungho Plots", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/74"}, "id": "PVTI_lADOAGrG5M4A_OAXzgivx3w", "labels": ["bug", "cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["jameskent-metoffice", "mo-marqh", "mo-marqh", "mo-marqh"], "status": "Approved", "title": "Fix Gungho Plots"}, {"assignees": ["james-bruten-mo"], "code Review": "andrewcoughtrie", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @andrewcoughtrie \r\n\r\n\r\n\r\nThe output directories of local builds hasn't been set up quite correctly\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite\r\n using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel\r\n interface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [x] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [x] Documentation is complete and accurate\r\n- [x] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n", "number": 194, "repository": "MetOffice/lfric_core", "title": "Update gitignore", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/194"}, "id": "PVTI_lADOAGrG5M4A_OAXzgiv4t0", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["andrewcoughtrie", "andrewcoughtrie"], "status": "Done", "title": "Update gitignore"}, {"assignees": ["james-bruten-mo"], "code Review": "andrewcoughtrie", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @andrewcoughtrie \r\n\r\n\r\n\r\nThe output directories of local builds hasn't been set up quite correctly\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have tests been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any psyclone related code (eg. PsyKAl-lite, Kernal\r\n inteface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [x] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [x] Documentation is complete and accurate\r\n- [x] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n", "number": 75, "repository": "MetOffice/lfric_apps", "title": "update gitignore", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/75"}, "id": "PVTI_lADOAGrG5M4A_OAXzgiv48M", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["andrewcoughtrie"], "status": "Done", "title": "update gitignore"}, {"content": {"body": "", "number": 49, "repository": "MetOffice/growss", "title": "Remove label", "type": "PullRequest", "url": "https://github.com/MetOffice/growss/pull/49"}, "id": "PVTI_lADOAGrG5M4A_OAXzgiv-mw", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/growss", "status": "Done", "title": "Remove label"}, {"assignees": ["mike-hobson"], "code Review": "svadams ", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @MatthewHambley \r\nCode Reviewer: @svadams \r\n\r\n\r\n\r\nCreate, store and reuse xmaps in the creation of halo routing tables.\r\n\r\n- closes #195 \r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [X] I have performed a self-review of my own code\r\n- [X] My code follows the project's\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [X] Comments have been included that aid understanding and enhance the\r\n readability of the code\r\n- [X] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [X] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite\r\n using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (e.g. kgo changes)\r\n- [X] I have added tests to cover new functionality as appropriate (e.g. system\r\n tests, unit tests, etc.)\r\n- [X] Any new tests have been assigned an appropriate amount of compute resource\r\n and have been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n# Test Suite Results - lfric_core - reusing_xt_xmap_core/run2\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | reusing_xt_xmap_core/run2 |\r\n| Suite User | mike.hobson |\r\n| Workflow Start | 2025-12-18T14:39:11 |\r\n| Groups Run | suite_default |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| lfric_core | [mike-hobson/lfric_core@reusing_xt_xmap](https://github.com/mike-hobson/lfric_core/tree/reusing_xt_xmap) | False |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n
\r\n:white_check_mark: succeeded tasks - 372\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| build_coupled_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_coupled_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_coupled_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_coupled_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_coupling_unit_tests_azspice_gnu_32bit | succeeded |\r\n| build_coupling_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_coupling_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| build_coupling_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_driver_unit_tests_azspice_gnu_32bit | succeeded |\r\n| build_driver_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_driver_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| build_driver_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_infrastructure_integration_tests_azspice_gnu_32bit | succeeded |\r\n| build_infrastructure_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_infrastructure_integration_tests_ex1a_cce_32bit | succeeded |\r\n| build_infrastructure_integration_tests_ex1a_cce_64bit | succeeded |\r\n| build_infrastructure_unit_tests_azspice_gnu_32bit | succeeded |\r\n| build_infrastructure_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_infrastructure_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| build_infrastructure_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_io_demo_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_io_demo_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_io_demo_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_io_demo_ex1a_cce_fast-debug-32bit | succeeded |\r\n| build_io_demo_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_io_demo_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_io_demo_ex1a_gnu_fast-debug-32bit | succeeded |\r\n| build_io_demo_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_io_demo_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_io_demo_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_lbc_demo_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lbc_demo_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lbc_demo_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lbc_demo_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric_xios_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_lfric_xios_integration_tests_ex1a_cce_64bit | succeeded |\r\n| build_lfric_xios_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_lfric_xios_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_mesh_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_tools_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_tools_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_mesh_tools_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_mesh_tools_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_mesh_tools_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_tools_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_mesh_tools_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_science_unit_tests_azspice_gnu_32bit | succeeded |\r\n| build_science_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_science_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| build_science_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_simple_diffusion_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_simple_diffusion_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_simple_diffusion_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_simple_diffusion_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_simple_diffusion_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_simple_diffusion_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_simple_diffusion_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_skeleton_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_skeleton_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_skeleton_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_skeleton_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_skeleton_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_skeleton_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_skeleton_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| check_coupled_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_coupled_default-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_coupled_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_coupled_default-C12_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_io_demo_default-C24_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_io_demo_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_io_demo_default-C24_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_io_demo_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_io_demo_multifile-C24_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_io_demo_multifile-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_io_demo_multifile-C24_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_io_demo_multifile-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_io_demo_multifile-C24_ex1a_gnu_fast-debug-32bit | succeeded |\r\n| check_io_demo_multifile-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_ConstantLBC-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_ConstantLBC-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_lbc_demo_ConstantLBC-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_ConstantLBC-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_1x1P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_1x1P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_2x2P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_2x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_8x2P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_8x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_lbc_demo_default-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_default-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_lbc_demo_default-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_default-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c1_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c2_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c2_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c3_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c3_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c3_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-maps_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-maps_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-maps_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op-nonuniform_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op-nonuniform_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op-nonuniform_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-rotated_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-rotated_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-rotated_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_equator-band_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_equator-band_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_equator-band_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_equator_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_equator_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_equator_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_mesh_tools_falklands_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_falklands_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_falklands_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_london-model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_london-model_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_london-model_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_nzlam4_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_nzlam4_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_nzlam4_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-bi-periodic_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-bi-periodic_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-bi-periodic_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-maps_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-maps_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-maps_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-non-periodic_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-non-periodic_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-non-periodic_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-op-lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-op-lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-op-lam_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-centres_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-centres_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-centres_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-nodes_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-nodes_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-nodes_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-points_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-points_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-points_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-x_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-x_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-x_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-y_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-y_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-y_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_polar_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_polar_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_polar_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_uk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_uk_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_uk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_var-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_var-seuk_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_var-seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_simple_diffusion_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_simple_diffusion_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_simple_diffusion_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| check_skeleton_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_skeleton_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_skeleton_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| config_dump_checker | succeeded |\r\n| export-source | succeeded |\r\n| export-source_azspice | succeeded |\r\n| export-source_ex1a | succeeded |\r\n| global_variables_checker | succeeded |\r\n| housekeep_azspice | succeeded |\r\n| housekeep_ex1a | succeeded |\r\n| python_unit_tests | succeeded |\r\n| remote-init_azspice | succeeded |\r\n| remote-init_ex1a | succeeded |\r\n| rose-stem_lint_checker | succeeded |\r\n| run_coupled_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_coupled_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_coupled_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_coupled_default-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_coupled_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_coupled_default-C12_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_coupling_unit_tests_azspice_gnu_32bit | succeeded |\r\n| run_coupling_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_coupling_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| run_coupling_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_driver_unit_tests_azspice_gnu_32bit | succeeded |\r\n| run_driver_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_driver_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| run_driver_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_infrastructure_integration_tests_azspice_gnu_32bit | succeeded |\r\n| run_infrastructure_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_infrastructure_integration_tests_ex1a_cce_32bit | succeeded |\r\n| run_infrastructure_integration_tests_ex1a_cce_64bit | succeeded |\r\n| run_infrastructure_unit_tests_azspice_gnu_32bit | succeeded |\r\n| run_infrastructure_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_infrastructure_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| run_infrastructure_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_io_demo_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_io_demo_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_io_demo_default-C24_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_io_demo_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_io_demo_default-C24_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_io_demo_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_io_demo_multifile-C24_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_io_demo_multifile-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_io_demo_multifile-C24_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_io_demo_multifile-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_io_demo_multifile-C24_ex1a_gnu_fast-debug-32bit | succeeded |\r\n| run_io_demo_multifile-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_io_demo_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_io_demo_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_lbc_demo_ConstantLBC-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_ConstantLBC-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lbc_demo_ConstantLBC-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_ConstantLBC-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_IntegerFields-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_IntegerFields-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lbc_demo_IntegerFields-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_IntegerFields-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_1x1P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_1x1P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_2x2P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_2x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_8x2P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_8x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lbc_demo_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_default-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_default-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lbc_demo_default-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_default-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric_xios_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_lfric_xios_integration_tests_ex1a_cce_64bit | succeeded |\r\n| run_lfric_xios_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_lfric_xios_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_mesh_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_1x1P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_2x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_8x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_canned_cubedsphere_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_canned_planar_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c1_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c2_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c2_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c3_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c3_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c3_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-maps_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-maps_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-maps_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op-nonuniform_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op-nonuniform_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op-nonuniform_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-rotated_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-rotated_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-rotated_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_equator-band_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_equator-band_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_equator-band_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_equator_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_equator_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_equator_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_mesh_tools_falklands_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_falklands_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_falklands_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_london-model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_london-model_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_london-model_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_nzlam4_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_nzlam4_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_nzlam4_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-bi-periodic_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-bi-periodic_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-bi-periodic_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-maps_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-maps_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-maps_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-non-periodic_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-non-periodic_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-non-periodic_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-op-lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-op-lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-op-lam_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-centres_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-centres_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-centres_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-nodes_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-nodes_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-nodes_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-points_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-points_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-points_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-x_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-x_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-x_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-y_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-y_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-y_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_polar_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_polar_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_polar_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_uk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_uk_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_uk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_mesh_tools_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_mesh_tools_var-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_var-seuk_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_var-seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_science_unit_tests_azspice_gnu_32bit | succeeded |\r\n| run_science_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_science_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| run_science_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_simple_diffusion_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_simple_diffusion_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_simple_diffusion_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_simple_diffusion_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_simple_diffusion_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_simple_diffusion_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_simple_diffusion_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_skeleton_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_skeleton_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_skeleton_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_skeleton_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_skeleton_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_skeleton_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_skeleton_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| site_validator | succeeded |\r\n| style_checker | succeeded |\r\n| validate_rose_meta | succeeded |\r\n
\r\n\r\n\r\n## Security Considerations\r\n\r\n- [X] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [X] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel\r\n interface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [x] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [x] Documentation is complete and accurate\r\n- [x] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n", "number": 198, "repository": "MetOffice/lfric_core", "title": "Reusing xt xmap", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/198"}, "id": "PVTI_lADOAGrG5M4A_OAXzgiwo0o", "labels": ["enhancement", "cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["MatthewHambley", "MatthewHambley", "svadams", "svadams", "MatthewHambley"], "sciTech Review": "MatthewHambley", "status": "Done", "title": "Reusing xt xmap"}, {"assignees": ["james-bruten-mo"], "code Review": "yaswant", "content": {"body": "This improves the logic around modification of the CONTRIBUTORS file when the signature already exists on the base branch. This is now determined by diffing the merged branch against the head of the base branch. Given this workflow is called on `pull_request_target` (to allow for commenting and labelling), we need to checkout the ref `\"refs/pull/${{ github.event.number }}/merge\"`. \r\n\r\nI also modify some of the output comments - this will fail if there is any difference found above rather than just when the signature is removed (to protect against removing someone elses name accidently when fixing a conflict). There might be legitimate reasons to edit the file, but this will require an admin to bypass the branch protection.\r\n\r\nI've tested this pretty thoroughly on private repos, including with forks. Happy to switch to target `develop` though if we want to verify on the git_playground.", "number": 50, "repository": "MetOffice/growss", "title": "update cla action", "type": "PullRequest", "url": "https://github.com/MetOffice/growss/pull/50"}, "id": "PVTI_lADOAGrG5M4A_OAXzgixAD8", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/growss", "reviewers": ["yaswant"], "status": "Done", "title": "update cla action"}, {"assignees": ["r-sharp"], "code Review": "yaswant", "content": {"body": "Sci/Tech Reviewer: @jennyhickson \r\nCode Reviewer: @yaswant \r\n\r\n# Description\r\n\r\n## Summary\r\n\r\nReplacing the old Perl umdp3 compliance checking script with a half baked Python one.\r\n\r\n## Changes\r\n\r\nRemove all old Perl files.\r\nAdd _Python translations_ after some heavy refactoring.\r\nThis provides a framework, and some very simple tests to run on Fortran code.\r\nIt will need some tweaking as we stumble over the defficiencies we see when used in anger.\r\n\r\n## Impact\r\n\r\nReplaces a set of Perl scripts which was hardwired to FCM to a Python version capable of using git_bdiff\r\n\r\n## Issues addressed\r\n\r\nResolves\r\n\r\nOne of the last remaining Perl script uses in the toolset\r\nHardwiring of our style checker to FCM\r\n\r\n## Checklist\r\n\r\n- [x] I have performed a self-review of my own changes\r\n", "number": 153, "repository": "MetOffice/SimSys_Scripts", "title": "Umdp3 checker in python", "type": "PullRequest", "url": "https://github.com/MetOffice/SimSys_Scripts/pull/153"}, "id": "PVTI_lADOAGrG5M4A_OAXzgixAEw", "labels": ["CI", "git-migration"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/SimSys_Scripts", "reviewers": ["jennyhickson", "jennyhickson", "yaswant"], "sciTech Review": "jennyhickson", "status": "Done", "title": "Umdp3 checker in python"}, {"content": {"body": "# PR Summary\r\n\r\nSci Tech Reviewer: \r\nCode Reviewer: \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's style guidelines\r\n- [ ] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\n### trac.log and other testing evidence\r\n\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] This change does not introduce security vulnerabilities\r\n- [ ] I have reviewed the code for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## Contributor License Agreement (CLA)\r\n\r\n- [ ] **Required** - I confirm that I have read and agree to the project's\r\n [Contributor License Agreement](todo-enter-link-to-cla)\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](todo-enter-link-to-policy-page) (including\r\n attribution labels)\r\n\r\n## Documentation\r\n\r\nDocumentation includes a broad range of things, including but not limited to, \r\nuser guides, code comments, API documentation, and README.md.\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n# Sci-Tech Review\r\n\r\n\r\n\r\n- [ ] I understand the scientific or technical area of the code being modified\r\n- [ ] The code changes correspond to the PR description of the changes\r\n- [ ] Sufficient documentation has been included\r\n- [ ] Sufficient testing has been performed\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues are properly linked and addressed\r\n- [ ] CLA compliance is confirmed\r\n- [ ] Code quality standards are met\r\n- [ ] Tests are adequate and passing\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 107, "repository": "MetOffice/git_playground", "title": "Demonstrate cla", "type": "PullRequest", "url": "https://github.com/MetOffice/git_playground/pull/107"}, "id": "PVTI_lADOAGrG5M4A_OAXzgiyoGc", "labels": ["cla-signed", "contributor"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/git_playground", "status": "Done", "title": "Demonstrate cla"}, {"content": {"body": "# PR Summary\r\n\r\nSci Tech Reviewer: \r\nCode Reviewer: \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's style guidelines\r\n- [ ] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\n### trac.log and other testing evidence\r\n\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] This change does not introduce security vulnerabilities\r\n- [ ] I have reviewed the code for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## Contributor License Agreement (CLA)\r\n\r\n- [ ] **Required** - I confirm that I have read and agree to the project's\r\n [Contributor License Agreement](todo-enter-link-to-cla)\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](todo-enter-link-to-policy-page) (including\r\n attribution labels)\r\n\r\n## Documentation\r\n\r\nDocumentation includes a broad range of things, including but not limited to, \r\nuser guides, code comments, API documentation, and README.md.\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n# Sci-Tech Review\r\n\r\n\r\n\r\n- [ ] I understand the scientific or technical area of the code being modified\r\n- [ ] The code changes correspond to the PR description of the changes\r\n- [ ] Sufficient documentation has been included\r\n- [ ] Sufficient testing has been performed\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues are properly linked and addressed\r\n- [ ] CLA compliance is confirmed\r\n- [ ] Code quality standards are met\r\n- [ ] Tests are adequate and passing\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 108, "repository": "MetOffice/git_playground", "title": "demonstrate edited contributors", "type": "PullRequest", "url": "https://github.com/MetOffice/git_playground/pull/108"}, "id": "PVTI_lADOAGrG5M4A_OAXzgiypHE", "labels": ["contributor"], "repository": "https://github.com/MetOffice/git_playground", "status": "SciTech Review", "title": "demonstrate edited contributors"}, {"assignees": ["james-bruten-mo"], "code Review": "yaswant", "content": {"body": "Merging the changes from #50 into main having been verified on the develop branch in the git playground", "number": 51, "repository": "MetOffice/growss", "title": "Update the cla-check ", "type": "PullRequest", "url": "https://github.com/MetOffice/growss/pull/51"}, "id": "PVTI_lADOAGrG5M4A_OAXzgiyp2U", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/growss", "reviewers": ["yaswant", "yaswant"], "status": "Done", "title": "Update the cla-check "}, {"assignees": ["oakleybrunt", "MetBenjaminWent"], "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @MetBenjaminWent\r\nCode Reviewer: @james-bruten-mo \r\n\r\n\r\n\r\nSigning the CLA\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have tests been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any psyclone related code (eg. PsyKAl-lite, Kernal\r\n inteface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 78, "repository": "MetOffice/lfric_apps", "title": "Signed CLA", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/78"}, "id": "PVTI_lADOAGrG5M4A_OAXzgiy3wQ", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["MetBenjaminWent", "MetBenjaminWent"], "status": "Done", "title": "Signed CLA"}, {"assignees": ["mo-andymalcolm", "mo-saracusworth"], "code Review": "ericaneininger", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @mo-saracusworth \r\nCode Reviewer: @ericaneininger \r\n\r\n\r\n\r\n\r\nAdd two new build routines needed for the nudging code optimisation changes.\r\nAlso update GCOM version number to 8.5.\r\n\r\nn.b. one of the new routines may not be used but we will leave it in for now. No tests for new routines added but we may do this in a follow-up ticket.\r\n\r\n\r\n\r\n\r\n- closes #7\r\n- blocks um#20\r\n-\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [y] I have performed a self-review of my own code\r\n- [y] My code follows the project's style guidelines\r\n- [y] Comments have been included that aid understanding and enhance the\r\n readability of the code\r\n- [y] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [n/a] If shared files have been modified, I have run the rose-stem suite locally\r\n- [n/a] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [n - see notes] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\nrose stem has been run with all_tune group and all tasks pass\r\n\r\n### trac.log\r\n\r\n\r\nUnable to enter trac.log file as suite-report.py has been removed.\r\n\r\n## Security Considerations\r\n\r\n- [y] I have reviewed my changes for potential security issues\r\n- [n/a] Sensitive data is properly handled (if applicable)\r\n- [n/a] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [y] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [n] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [n/a] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 8, "repository": "MetOffice/gcom", "title": "7 - Add routines needed for nudging", "type": "PullRequest", "url": "https://github.com/MetOffice/gcom/pull/8"}, "id": "PVTI_lADOAGrG5M4A_OAXzgi4SVA", "repository": "https://github.com/MetOffice/gcom", "reviewers": ["ericaneininger", "mo-saracusworth"], "sciTech Review": "mo-saracusworth", "status": "SciTech Review", "title": "7 - Add routines needed for nudging"}, {"assignees": ["mo-marqh"], "code Review": "Pierre-siddall ", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @Pierre-siddall \r\n\r\n\r\n\r\n\r\n\r\n\r\nThis change introduces new timing caliper locations.\r\n\r\nThis contributes work from the recent performance management work (Dec 2025)\r\n\r\n- this will interact with the new PR #80 (from https://code.metoffice.gov.uk/trac/lfric_apps/ticket/958)\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have tests been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any psyclone related code (eg. PsyKAl-lite, Kernal\r\n inteface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 79, "repository": "MetOffice/lfric_apps", "title": "Time calipers pi25", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/79"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjDNp0", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "status": "SciTech Review", "title": "Time calipers pi25"}, {"assignees": ["jedbakerMO"], "code Review": "mo-rickywong", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @christophermaynard \r\nCode Reviewer: @mo-rickywong \r\n\r\n\r\n\r\n\r\n\r\n\r\nThis PR is the github migration of [Trac : lfric_apps#958](https://code.metoffice.gov.uk/trac/lfric_apps/ticket/958)\r\nIt replaces all timer calls throughout LFRic Apps and LFRic Core (in the linked PR) with the new timing wrapper. The timing wrapper can use either the current timer or Vernier, depending on suite configuration.\r\n\r\n\r\nlinked MetOffice/lfric_core/pull/201\r\n\r\n\r\n\r\n- closes #68\r\n- is related to MetOffice/lfric_core#192\r\n- blocks Issue #76 which currently has no PR.\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [X] I have performed a self-review of my own code\r\n- [X] My code follows the project's style guidelines\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [X] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [X] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [X] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have tests been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n# Test Suite Results - lfric_apps - timing_mod_apps_updated/run2\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | timing_mod_apps_updated/run2 |\r\n| Suite User | jed.baker |\r\n| Workflow Start | 2025-12-29T14:52:17 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [jedbakerMO/lfric_apps@68_timing_mod_updated](https://github.com/jedbakerMO/lfric_apps/tree/68_timing_mod_updated) | False |\r\n| lfric_core | [jedbakerMO/lfric_core@192_timing_mod_migration_core](https://github.com/jedbakerMO/lfric_core/tree/192_timing_mod_migration_core) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n
\r\n:white_check_mark: succeeded tasks - 1104\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| build_adjoint_tests_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_azspice_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_ex1a_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_adjoint_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_coupled_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gravity_wave_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_gravity_wave_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_gravity_wave_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_gravity_wave_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_gravity_wave_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gungho_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_gungho_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| build_gungho_model_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_model_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| build_gungho_model_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_gungho_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_tests_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_tests_integration_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_jules_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric2lfric_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric2lfric_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_full-debug-32bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_production-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_fast-debug-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_full-debug-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_production-32bit | succeeded |\r\n| build_lfric_coupled_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_linear_model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_model_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_linear_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_mesh_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_name_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_ngarch_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_ngarch_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_ngarch_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_ngarch_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_physics_schemes_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_physics_schemes_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_shallow_water_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_shallow_water_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_shallow_water_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_shallow_water_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_solver_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_solver_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_solver_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_transport_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_transport_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_transport_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| check_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200_realorog-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200_realorog-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-nrun-v-crun | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-nrun-v-crun | succeeded |\r\n| check_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_runge-kutta-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_runge-kutta-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_semi-implicit-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_semi-implicit-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_nwp_gal9-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_nwp_gal9-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jules_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-seuk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_chem_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_chem_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9_debug-C12_azspice_gnu_full-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_debug-C12_ex1a_cce_full-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_noukca_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_noukca_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_zero-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_zero-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| config_dump_checker | succeeded |\r\n| export-source | succeeded |\r\n| export-source_azspice | succeeded |\r\n| export-source_ex1a | succeeded |\r\n| export-weights_azspice | succeeded |\r\n| export-weights_ex1a | succeeded |\r\n| fcm_make2_drivers | succeeded |\r\n| fcm_make2_lfric_coupled_ocean_ex1a_cce_fast-debug-64bit | succeeded |\r\n| fcm_make_drivers | succeeded |\r\n| fcm_make_lfric_coupled_ocean_ex1a_cce_fast-debug-64bit | succeeded |\r\n| fcm_make_lfric_coupled_river_ex1a_cce_fast-debug-64bit | succeeded |\r\n| generate_weights_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet_lbc_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-falklands_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_azspice_weightgen_script | succeeded |\r\n| global_variables_checker | succeeded |\r\n| local_build_test | succeeded |\r\n| macro_chains_checker | succeeded |\r\n| perftools-export_gungho_model_baroclinic-profile_perf-C24_MG_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| pert_compare_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| pert_compare_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_cylinder_xz-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_cylinder_xz-BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| python_unit_tests | succeeded |\r\n| remote-init_azspice | succeeded |\r\n| remote-init_ex1a | succeeded |\r\n| rose-stem_lint_checker | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_adjoint_tests_canned_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_canned_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_azspice_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_ex1a_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_varying_ls-C12_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_adjoint_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_coupled_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gravity_wave_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_gravity_wave_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gungho_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_gungho_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit_pert_off | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit_pert_off | succeeded |\r\n| run_gungho_model_baroclinic-profile_perf-C24_MG_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_gungho_model_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200_realorog-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200_realorog-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_no-timestep-method-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_no-timestep-method-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_runge-kutta-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_runge-kutta-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_semi-implicit-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_semi-implicit-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_gungho_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_tests_integration_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_nwp_gal9-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_nwp_gal9-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jules_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jules_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-seuk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric_atm_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_canned_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_chem_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_chem_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C12_azspice_gnu_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C12_ex1a_cce_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_linear_model_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_zero-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_zero-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_linear_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_mesh_BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP2x2-50000x50000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1500x1500_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_C16_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_rot_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_rot_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_falklands_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_falklands_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_seuk_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_seuk_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_cylinder_xz-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_cylinder_xz-BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_name_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_ngarch_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_physics_schemes_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_physics_schemes_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_shallow_water_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_shallow_water_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_transport_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| site_validator | succeeded |\r\n| style_checker | succeeded |\r\n| test_launch-exe | succeeded |\r\n| validate_rose_meta | succeeded |\r\n
\r\n\r\n\r\n## Security Considerations\r\n\r\n- [X] I have reviewed my changes for potential security issues\r\n- [X] Sensitive data is properly handled (if applicable)\r\n- [X] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [X] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any psyclone related code (eg. PsyKAl-lite, Kernal\r\n inteface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [x] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n", "number": 80, "repository": "MetOffice/lfric_apps", "title": "Timing Mod wrapper rewrite", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/80"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjDOPA", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["christophermaynard", "mo-rickywong", "mo-rickywong"], "sciTech Review": "christophermaynard", "status": "Approved", "title": "Timing Mod wrapper rewrite"}, {"assignees": ["jedbakerMO"], "code Review": "mo-rickywong", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @christophermaynard \r\nCode Reviewer: @mo-rickywong \r\n\r\n\r\n\r\n\r\nThis PR is the github migration of [Trac : lfric_core#4669](https://code.metoffice.gov.uk/trac/lfric/ticket/4669)\r\nIt replaces all timer calls throughout LFRic Apps (in the linked PR) and LFRic Core with the new timing wrapper. The timing wrapper can use either the current timer or Vernier, depending on suite configuration.\r\n\r\n linked MetOffice/lfric_apps#80\r\n\r\n\r\n- closes #192 \r\n- is related to MetOffice/lfric_apps#68\r\n- blocks Issue #196 which currently has no PR.\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [X] I have performed a self-review of my own code\r\n- [X] My code follows the project's\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [X] Comments have been included that aid understanding and enhance the\r\n readability of the code\r\n- [X] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [X] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [X] If required (e.g. API changes) I have also run the LFRic Apps test suite\r\n using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n# Test Suite Results - lfric_core - timing_mod_core_updated/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | timing_mod_core_updated/run1 |\r\n| Suite User | jed.baker |\r\n| Workflow Start | 2025-12-29T14:36:31 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| lfric_core | [jedbakerMO/lfric_core@192_timing_mod_updated_core](https://github.com/jedbakerMO/lfric_core/tree/192_timing_mod_updated_core) | False |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n
\r\n:white_check_mark: succeeded tasks - 370\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| build_coupled_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_coupled_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_coupled_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_coupled_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_coupling_unit_tests_azspice_gnu_32bit | succeeded |\r\n| build_coupling_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_coupling_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| build_coupling_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_driver_unit_tests_azspice_gnu_32bit | succeeded |\r\n| build_driver_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_driver_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| build_driver_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_infrastructure_integration_tests_azspice_gnu_32bit | succeeded |\r\n| build_infrastructure_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_infrastructure_integration_tests_ex1a_cce_32bit | succeeded |\r\n| build_infrastructure_integration_tests_ex1a_cce_64bit | succeeded |\r\n| build_infrastructure_unit_tests_azspice_gnu_32bit | succeeded |\r\n| build_infrastructure_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_infrastructure_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| build_infrastructure_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_io_demo_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_io_demo_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_io_demo_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_io_demo_ex1a_cce_fast-debug-32bit | succeeded |\r\n| build_io_demo_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_io_demo_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_io_demo_ex1a_gnu_fast-debug-32bit | succeeded |\r\n| build_io_demo_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_io_demo_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_io_demo_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_lbc_demo_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lbc_demo_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lbc_demo_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lbc_demo_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric_xios_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_lfric_xios_integration_tests_ex1a_cce_64bit | succeeded |\r\n| build_lfric_xios_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_lfric_xios_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_mesh_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_tools_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_tools_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_mesh_tools_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_mesh_tools_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_mesh_tools_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_tools_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_mesh_tools_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_science_unit_tests_azspice_gnu_32bit | succeeded |\r\n| build_science_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_science_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| build_science_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_simple_diffusion_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_simple_diffusion_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_simple_diffusion_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_simple_diffusion_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_simple_diffusion_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_simple_diffusion_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_simple_diffusion_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_skeleton_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_skeleton_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_skeleton_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_skeleton_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_skeleton_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_skeleton_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_skeleton_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| check_coupled_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_coupled_default-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_coupled_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_coupled_default-C12_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_io_demo_default-C24_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_io_demo_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_io_demo_default-C24_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_io_demo_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_io_demo_multifile-C24_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_io_demo_multifile-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_io_demo_multifile-C24_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_io_demo_multifile-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_io_demo_multifile-C24_ex1a_gnu_fast-debug-32bit | succeeded |\r\n| check_io_demo_multifile-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_ConstantLBC-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_ConstantLBC-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_lbc_demo_ConstantLBC-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_ConstantLBC-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_1x1P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_1x1P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_2x2P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_2x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_8x2P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_8x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_lbc_demo_default-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_default-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_lbc_demo_default-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_default-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c1_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c2_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c2_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c3_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c3_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c3_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-maps_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-maps_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-maps_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op-nonuniform_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op-nonuniform_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op-nonuniform_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-rotated_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-rotated_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-rotated_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_equator-band_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_equator-band_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_equator-band_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_equator_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_equator_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_equator_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_mesh_tools_falklands_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_falklands_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_falklands_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_london-model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_london-model_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_london-model_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_nzlam4_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_nzlam4_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_nzlam4_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-bi-periodic_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-bi-periodic_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-bi-periodic_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-maps_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-maps_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-maps_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-non-periodic_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-non-periodic_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-non-periodic_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-op-lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-op-lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-op-lam_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-centres_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-centres_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-centres_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-nodes_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-nodes_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-nodes_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-points_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-points_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-points_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-x_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-x_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-x_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-y_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-y_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-y_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_polar_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_polar_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_polar_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_uk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_uk_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_uk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_var-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_var-seuk_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_var-seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_simple_diffusion_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_simple_diffusion_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_simple_diffusion_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| check_skeleton_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_skeleton_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_skeleton_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| config_dump_checker | succeeded |\r\n| export-source | succeeded |\r\n| export-source_azspice | succeeded |\r\n| export-source_ex1a | succeeded |\r\n| global_variables_checker | succeeded |\r\n| python_unit_tests | succeeded |\r\n| remote-init_azspice | succeeded |\r\n| remote-init_ex1a | succeeded |\r\n| rose-stem_lint_checker | succeeded |\r\n| run_coupled_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_coupled_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_coupled_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_coupled_default-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_coupled_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_coupled_default-C12_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_coupling_unit_tests_azspice_gnu_32bit | succeeded |\r\n| run_coupling_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_coupling_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| run_coupling_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_driver_unit_tests_azspice_gnu_32bit | succeeded |\r\n| run_driver_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_driver_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| run_driver_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_infrastructure_integration_tests_azspice_gnu_32bit | succeeded |\r\n| run_infrastructure_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_infrastructure_integration_tests_ex1a_cce_32bit | succeeded |\r\n| run_infrastructure_integration_tests_ex1a_cce_64bit | succeeded |\r\n| run_infrastructure_unit_tests_azspice_gnu_32bit | succeeded |\r\n| run_infrastructure_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_infrastructure_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| run_infrastructure_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_io_demo_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_io_demo_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_io_demo_default-C24_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_io_demo_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_io_demo_default-C24_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_io_demo_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_io_demo_multifile-C24_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_io_demo_multifile-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_io_demo_multifile-C24_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_io_demo_multifile-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_io_demo_multifile-C24_ex1a_gnu_fast-debug-32bit | succeeded |\r\n| run_io_demo_multifile-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_io_demo_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_io_demo_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_lbc_demo_ConstantLBC-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_ConstantLBC-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lbc_demo_ConstantLBC-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_ConstantLBC-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_IntegerFields-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_IntegerFields-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lbc_demo_IntegerFields-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_IntegerFields-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_1x1P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_1x1P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_2x2P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_2x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_8x2P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_8x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lbc_demo_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_default-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_default-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lbc_demo_default-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_default-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric_xios_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_lfric_xios_integration_tests_ex1a_cce_64bit | succeeded |\r\n| run_lfric_xios_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_lfric_xios_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_mesh_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_1x1P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_2x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_8x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_canned_cubedsphere_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_canned_planar_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c1_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c2_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c2_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c3_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c3_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c3_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-maps_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-maps_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-maps_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op-nonuniform_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op-nonuniform_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op-nonuniform_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-rotated_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-rotated_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-rotated_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_equator-band_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_equator-band_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_equator-band_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_equator_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_equator_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_equator_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_mesh_tools_falklands_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_falklands_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_falklands_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_london-model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_london-model_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_london-model_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_nzlam4_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_nzlam4_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_nzlam4_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-bi-periodic_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-bi-periodic_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-bi-periodic_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-maps_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-maps_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-maps_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-non-periodic_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-non-periodic_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-non-periodic_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-op-lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-op-lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-op-lam_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-centres_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-centres_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-centres_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-nodes_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-nodes_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-nodes_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-points_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-points_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-points_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-x_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-x_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-x_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-y_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-y_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-y_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_polar_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_polar_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_polar_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_uk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_uk_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_uk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_mesh_tools_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_mesh_tools_var-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_var-seuk_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_var-seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_science_unit_tests_azspice_gnu_32bit | succeeded |\r\n| run_science_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_science_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| run_science_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_simple_diffusion_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_simple_diffusion_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_simple_diffusion_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_simple_diffusion_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_simple_diffusion_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_simple_diffusion_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_simple_diffusion_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_skeleton_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_skeleton_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_skeleton_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_skeleton_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_skeleton_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_skeleton_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_skeleton_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| site_validator | succeeded |\r\n| style_checker | succeeded |\r\n| validate_rose_meta | succeeded |\r\n
\r\n\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [X] I have reviewed my changes for potential security issues\r\n- [X] Sensitive data is properly handled (if applicable)\r\n- [X] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [X] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel\r\n interface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [x] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 201, "repository": "MetOffice/lfric_core", "title": "Timing Mod wrapper rewrite", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/201"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjDx7Q", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["mo-rickywong", "christophermaynard"], "sciTech Review": "christophermaynard", "status": "Approved", "title": "Timing Mod wrapper rewrite"}, {"assignees": ["t00sa"], "code Review": "t00sa", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @harry-shepherd\r\nCode Reviewer: @t00sa \r\n\r\n\r\n\r\nThis stand alone change is part of a change set targeting performance management and optimisation, derived from https://code.metoffice.gov.uk/trac/lfric_apps/ticket/1002\r\n\r\nthis change set targets the configuration of tests, MPI management, I/O server interfacing and output file setup.\r\n\r\nThere are no linked or blocking issues for this change, though further changes will depend on it.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource\r\n and have tests been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n\r\n\r\n# Test Suite Results - lfric_apps - spareperformanceTestConfig/run3\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [spareperformanceTestConfig/run3](https://cylchub/services/cylc-review/cycles/mark.hedley/?suite=spareperformanceTestConfig%2Frun3) |\r\n| Suite User | mark.hedley |\r\n| Workflow Start | 2026-01-21T07:54:11 |\r\n| Groups Run | all |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [mo-marqh/lfric_apps@funcSpaceEnum](https://github.com/mo-marqh/lfric_apps/tree/funcSpaceEnum) | False |\r\n| lfric_core | [MetOffice/lfric_core@aa32824](https://github.com/MetOffice/lfric_core/tree/aa32824) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 1456\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any psyclone related code (eg. PsyKAl-lite, Kernal\r\n inteface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 82, "repository": "MetOffice/lfric_apps", "title": "Performance test config", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/82"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjHS9I", "labels": ["cla-modified"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["harry-shepherd", "t00sa"], "sciTech Review": "harry-shepherd", "status": "Done", "title": "Performance test config"}, {"assignees": ["oakleybrunt"], "code Review": "cameronbateman-mo", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @alanjhewitt \r\nCode Reviewer: @cameronbateman-mo \r\n\r\n\r\n\r\n\r\n\r\nThe `lfric_atm` model currently relies on the `noukca` configuration to be able to run with OMP_NUM_THREADS > 1. When using a more standard configuration (e.g. um_dump) the runs fail, citing problems in `ukca_aero_ctl.F90`.\r\n\r\nAfter investigation in #73, the problem was that UKCA segment size was not passed to the initialisation of UKCA when using `dust_and_clim` settings. This is a small fix that mirrors the solution in `ukca_init()` in `um_ukca_init_mod.f90`.\r\n\r\nI also removed the `noukca` configuration from the small threaded tests (C48_MG, C192_MG) since these were only made to get around the problem fixed in this PR.\r\n\r\n> [!WARNING]\r\n> This means that the old KGOs must be removed and new ones added for these tests.\r\n\r\nI have tested C896_MG and tests >1 thread pass and do not require the `noukca` configuration. I tested with both GNU and CCE at fast-debug.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource\r\n and have tests been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n## trac.log\r\n### Test Suite Results - lfric_apps - lfric-multithread/run10\r\n\r\n#### Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | lfric-multithread/run10 |\r\n| Suite User | oakley.brunt |\r\n| Workflow Start | 2026-01-12T08:52:28 |\r\n| Groups Run | all |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [oakleybrunt/LFRicApps@104-craypat](https://github.com/oakleybrunt/LFRicApps/tree/104-craypat) | False |\r\n| lfric_core | [MetOffice/lfric_core@5d4d72f](https://github.com/MetOffice/lfric_core/tree/5d4d72f) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n#### Task Information\r\n
\r\n:x: failed tasks - 6\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| check_lfric_atm_nwp_gal9_1T-C12_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_1T-C48_MG_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_2T-C12_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_2T-C48_MG_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_2T-C48_MG_ex1a_cce_full-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_4T-C48_MG_ex1a_cce_fast-debug-32bit | failed |\r\n
\r\n
\r\n:white_check_mark: succeeded tasks - 1450\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| build_adjoint_tests_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_azspice_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_ex1a_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_adjoint_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_coupled_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gravity_wave_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_gravity_wave_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_gravity_wave_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_gravity_wave_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_gravity_wave_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gungho_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_gungho_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| build_gungho_model_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_model_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| build_gungho_model_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_gungho_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_tests_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_tests_integration_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_jules_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric2lfric_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric2lfric_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_full-debug-32bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_production-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_fast-debug-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_full-debug-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_production-32bit | succeeded |\r\n| build_lfric_atm_ex1a_gnu_fast-debug-32bit | succeeded |\r\n| build_lfric_coupled_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_linear_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_linear_model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_model_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_linear_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_mesh_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_name_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_ngarch_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_ngarch_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_ngarch_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_ngarch_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_physics_schemes_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_physics_schemes_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_shallow_water_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_shallow_water_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_shallow_water_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_shallow_water_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_socrates_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_socrates_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_solver_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_solver_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_solver_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_transport_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_transport_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_transport_ex1a_cce_production-64bit | succeeded |\r\n| build_transport_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| check_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200_realorog-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200_realorog-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-nrun-v-crun | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-nrun-v-crun | succeeded |\r\n| check_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_runge-kutta-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_runge-kutta-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_semi-implicit-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_semi-implicit-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_nwp_gal9-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_nwp_gal9-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_op_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jules_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-seuk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-uk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-uk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-ukv_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-ukv_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric_atm_aquaplanet-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_aquaplanet-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_camembert_case3_gj1214b-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_camembert_case3_gj1214b-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_1T-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_2T-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_4T-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_chem-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9_chem-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9_chem_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_chem_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_comp_tran_ref_3d_l120-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_hd209458b-C24_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_hd209458b-C24_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_casim-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_casim-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_coma9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_coma9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_comorph_dev-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_comorph_dev-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_comorph_tb-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C48_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9-pert-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9-pert-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_coarse_aero-C48_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_coarse_aero-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_coarse_aero_threaded-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_coarse_aero_threaded-C48_MG_ex1a_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_da-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9_da-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9_debug-C12_azspice_gnu_full-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_debug-C12_ex1a_cce_full-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_debug-C48_MG_azspice_gnu_full-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_debug-C48_MG_ex1a_cce_full-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_eda-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9_eda-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9_eda_jada-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9_eda_jada-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9_mol-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9_mol-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_thai_ben1-C48_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_thai_ben1-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_zero-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_zero-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| config_dump_checker | succeeded |\r\n| export-source | succeeded |\r\n| export-source_azspice | succeeded |\r\n| export-source_ex1a | succeeded |\r\n| export-weights_azspice | succeeded |\r\n| export-weights_ex1a | succeeded |\r\n| fcm_make2_drivers | succeeded |\r\n| fcm_make2_lfric_coupled_ocean_ex1a_cce_fast-debug-64bit | succeeded |\r\n| fcm_make_drivers | succeeded |\r\n| fcm_make_lfric_coupled_ocean_ex1a_cce_fast-debug-64bit | succeeded |\r\n| fcm_make_lfric_coupled_river_ex1a_cce_fast-debug-64bit | succeeded |\r\n| generate_weights_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet_lbc_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-falklands_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-var_seuk_lam_azspice_weightgen_script | succeeded |\r\n| global_variables_checker | succeeded |\r\n| housekeep_azspice | succeeded |\r\n| kgo_groups_checker | succeeded |\r\n| local_build_test | succeeded |\r\n| macro_chains_checker | succeeded |\r\n| memory_plot_ex_lfric_atm_nwp_gal9-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| perftools-export_gungho_model_baroclinic-profile_perf-C24_MG_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| pert_compare_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| pert_compare_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| pert_compare_lfric_atm_nwp_gal9-pert-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| pert_compare_lfric_atm_nwp_gal9-pert-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_agnesi_nhyd_cart-BiP360x8-400x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C192_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C96_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bell_3d_cart-BiP300x200-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bryan_fritsch-moist-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_earth-like-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_grabowski-clark-BiP200x10-18x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_held-suarez-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_moist_baroclinic_orog-C48_MG_ex1a_gnu_fast-debug-64bit-crun3 | succeeded |\r\n| plot_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-smag-l300-BiP200x8-5x5_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C96_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar3d_cart-BiP200x200-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_25m-BiP2048x8-25x25_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_50m-BiP1024x8-50x50_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_warm3dbubble-BiP100x100-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_lfric_atm_aquaplanet-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_aquaplanet-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_camembert_case3_gj1214b-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_camembert_case3_gj1214b-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9_chem-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9_chem-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_casim-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_casim-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_coma9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_coma9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_comorph_dev-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_comorph_dev-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_comorph_tb-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C48_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_nwp_gal9-pert-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_nwp_gal9-pert-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_nwp_gal9_coarse_aero-C48_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_nwp_gal9_coarse_aero-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_nwp_gal9_da-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9_da-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9_eda-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9_eda-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9_eda_jada-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9_eda_jada-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9_mol-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9_mol-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_thai_ben1-C48_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_thai_ben1-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_cylinder_xz-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_cylinder_xz-BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C96_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi_ffsl-C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi_ffsl-C96_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi_koren-C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi_koren-C96_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi_mono-C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi_mono-C96_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_vortex_plane-BiP64x64-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_vortex_plane-BiP64x64-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_vortex_plane_vi-BiP64x64-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_vortex_plane_vi-BiP64x64-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_curl_free_reversible_xz_ffsl_bigcfl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_curl_free_reversible_xz_ffsl_bigcfl-BiP100x10-20x20_ex1a_cce_production-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl_bigcfl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl_bigcfl-BiP100x10-20x20_ex1a_cce_production-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C96_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C96_ex1a_cce_production-64bit | succeeded |\r\n| plot_transport_deformation_2d_ffsl_bigcfl-C96_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_ffsl_bigcfl-C96_ex1a_cce_production-64bit | succeeded |\r\n| plot_transport_divergent_2d_cylinder_ffsl_bigcfl-C96_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_divergent_2d_cylinder_ffsl_bigcfl-C96_ex1a_cce_production-64bit | succeeded |\r\n| plot_transport_eternal_fountain_xz_ffsl_bigcfl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_eternal_fountain_xz_ffsl_bigcfl-BiP100x10-20x20_ex1a_cce_production-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_bigcfl-C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_bigcfl-C48_ex1a_cce_production-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| python_unit_tests | succeeded |\r\n| remote-init_azspice | succeeded |\r\n| remote-init_ex1a | succeeded |\r\n| rose-stem_lint_checker | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-var_seuk_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-var_seuk_lam_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_adjoint_tests_canned_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_canned_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_azspice_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_ex1a_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_varying_ls-C12_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_adjoint_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_coupled_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gravity_wave_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_gravity_wave_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gungho_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_gungho_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_agnesi_nhyd_cart-BiP360x8-400x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C192_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C96_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit_pert_off | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit_pert_off | succeeded |\r\n| run_gungho_model_baroclinic-profile_perf-C24_MG_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bell_3d_cart-BiP300x200-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bryan_fritsch-moist-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_gungho_model_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200_realorog-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200_realorog-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_earth-like-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_gh_profile_omp6_6nodes-C192_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_grabowski-clark-BiP200x10-18x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_held-suarez-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_moist_baroclinic_orog-C48_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_moist_baroclinic_orog-C48_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_moist_baroclinic_orog-C48_MG_ex1a_gnu_fast-debug-64bit-crun2 | succeeded |\r\n| run_gungho_model_moist_baroclinic_orog-C48_MG_ex1a_gnu_fast-debug-64bit-crun3 | succeeded |\r\n| run_gungho_model_no-timestep-method-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_no-timestep-method-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-smag-l300-BiP200x8-5x5_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_runge-kutta-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_runge-kutta-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C96_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar3d_cart-BiP200x200-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_semi-implicit-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_semi-implicit-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_25m-BiP2048x8-25x25_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_50m-BiP1024x8-50x50_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_warm3dbubble-BiP100x100-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_gungho_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_tests_integration_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_nwp_gal9-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_nwp_gal9-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_op_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_op_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jules_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jules_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-seuk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-uk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-uk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-ukv_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-ukv_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric_atm_aquaplanet-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_aquaplanet-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_aquaplanet-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_aquaplanet-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_camembert_case3_gj1214b-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_camembert_case3_gj1214b-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_camembert_case3_gj1214b-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_camembert_case3_gj1214b-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_canned_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_1T-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_2T-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_4T-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_chem-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9_chem-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9_chem-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9_chem-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9_chem_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_chem_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_comp_tran_ref_3d_l120-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_hd209458b-C24_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_hd209458b-C24_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_hd209458b-C24_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_hd209458b-C24_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_casim-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_casim-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_casim-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_casim-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_coma9-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_coma9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_coma9-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_coma9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_comorph_dev-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_comorph_dev-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_comorph_dev-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_comorph_dev-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_comorph_tb-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_comorph_tb-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C48_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9-pert-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9-pert-C12_azspice_gnu_fast-debug-32bit_pert_off | succeeded |\r\n| run_lfric_atm_nwp_gal9-pert-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9-pert-C12_ex1a_cce_fast-debug-32bit_pert_off | succeeded |\r\n| run_lfric_atm_nwp_gal9_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_1T-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_2T-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_2T-C48_MG_ex1a_cce_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_4T-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_4T-C48_MG_ex1a_cce_production-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_coarse_aero-C48_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_coarse_aero-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_coarse_aero_threaded-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_coarse_aero_threaded-C48_MG_ex1a_cce_production-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_coarse_aero_threaded-C48_MG_ex1a_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_da-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_da-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_da-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_da-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C12_azspice_gnu_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C12_ex1a_cce_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C48_MG_azspice_gnu_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C48_MG_ex1a_cce_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_eda-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_eda-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_eda-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_eda-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_eda_jada-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_eda_jada-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_eda_jada-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_eda_jada-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_ls_and_jedi-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_ls_and_jedi-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_mol-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_mol-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_mol-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_mol-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3-seuk_ls_and_jedi_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_ral3-seuk_ls_and_jedi_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_thai_ben1-C48_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_thai_ben1-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-var_seuk_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-var_seuk_lam_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_linear_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_linear_model_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_zero-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_zero-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_linear_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_mesh_BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x100-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP1024x8-50x50_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x10-18x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x200-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x8-5x5_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP2048x8-25x25_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP2x2-50000x50000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x200-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP360x8-400x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1500x1500_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_C16_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C192_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_rot_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_rot_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C96_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C96_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C96_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_falklands_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_falklands_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_uk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_uk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_ukv_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_ukv_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_seuk_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_seuk_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_var_seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_var_seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_cylinder_xz-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_cylinder_xz-BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_name_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_ngarch_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_physics_schemes_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_physics_schemes_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_shallow_water_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C96_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi_ffsl-C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi_ffsl-C96_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi_koren-C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi_koren-C96_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi_mono-C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi_mono-C96_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_shallow_water_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_shallow_water_vortex_plane-BiP64x64-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_vortex_plane-BiP64x64-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_vortex_plane_vi-BiP64x64-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_vortex_plane_vi-BiP64x64-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_socrates_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_socrates_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_solver_bicgstab-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_transport_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_curl_free_reversible_xz_ffsl_bigcfl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_curl_free_reversible_xz_ffsl_bigcfl-BiP100x10-20x20_ex1a_cce_production-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl_bigcfl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl_bigcfl-BiP100x10-20x20_ex1a_cce_production-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C96_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C96_ex1a_cce_production-64bit | succeeded |\r\n| run_transport_deformation_2d_ffsl_bigcfl-C96_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_ffsl_bigcfl-C96_ex1a_cce_production-64bit | succeeded |\r\n| run_transport_divergent_2d_cylinder_ffsl_bigcfl-C96_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_divergent_2d_cylinder_ffsl_bigcfl-C96_ex1a_cce_production-64bit | succeeded |\r\n| run_transport_eternal_fountain_xz_ffsl_bigcfl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_eternal_fountain_xz_ffsl_bigcfl-BiP100x10-20x20_ex1a_cce_production-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_bigcfl-C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_bigcfl-C48_ex1a_cce_production-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| site_validator | succeeded |\r\n| style_checker | succeeded |\r\n| test_launch-exe | succeeded |\r\n| validate_rose_meta | succeeded |\r\n
\r\n
\r\n:hourglass: waiting tasks - 1\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| housekeep_ex1a | waiting |\r\n
\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any psyclone related code (eg. PsyKAl-lite, Kernal\r\n inteface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [x] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [x] Documentation is complete and accurate\r\n- [x] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n", "number": 83, "repository": "MetOffice/lfric_apps", "title": "Update UKCA initialisation for dust only to include segment size", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/83"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjNliU", "labels": ["KGO", "cla-modified"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["alanjhewitt", "cameronbateman-mo"], "sciTech Review": "alanjhewitt", "status": "Done", "title": "Update UKCA initialisation for dust only to include segment size"}, {"code Review": "james-bruten-mo", "content": {"body": "# Description\r\n\r\n## Summary\r\n\r\nIf the username is typed into the project box with extra whitespace then workload.py won't find a match to include the review in that persons tally. Strip any extra white space when extracting the reviewers from the project data to avoid this. ", "number": 154, "repository": "MetOffice/SimSys_Scripts", "title": "Fix bug with extra whitespace", "type": "PullRequest", "url": "https://github.com/MetOffice/SimSys_Scripts/pull/154"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjNmlo", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/SimSys_Scripts", "reviewers": ["james-bruten-mo"], "status": "Done", "title": "Fix bug with extra whitespace"}, {"code Review": "ericaneininger", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @EdHone \r\nCode Reviewer: @ericaneininger \r\n\r\n\r\n\r\nThis PR refactors the metadata manipulation that is currently done within a file post processing function.\r\n\r\nOnly one post processing operation remains, which is only needed in the edge case of a limited area model using projected coordinates. This may be able to be done with XIOS in future, but right now this remains a feature gap.\r\n\r\nFor all other metadata specifications, these are implemented using XIOS, and removed from post processing.\r\n\r\nThis also removes the need for MPI `init_wait()` calls from most usage patterns.\r\n\r\nThis change introduces a soft requirement for new XML configuration, forecast reference times will only be output if an appropriately named scalar is provided, normally through XML configuration files (see linked PR)\r\n\r\n- linked MetOffice/lfric_apps#90\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite\r\n using this branch\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (e.g. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (e.g. system\r\n tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource\r\n and have been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n# Test Suite Results - lfric_core - xios3-compatibility-stable3/run2\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | xios3-compatibility-stable3/run2 |\r\n| Suite User | mark.hedley |\r\n| Workflow Start | 2026-01-07T10:29:58 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| lfric_core | [mo-marqh/lfric_core@xios3-compatibility-stable3](https://github.com/mo-marqh/lfric_core/tree/xios3-compatibility-stable3) | False |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n
\r\n:white_check_mark: succeeded tasks - 372\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| build_coupled_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_coupled_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_coupled_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_coupled_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_coupling_unit_tests_azspice_gnu_32bit | succeeded |\r\n| build_coupling_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_coupling_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| build_coupling_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_driver_unit_tests_azspice_gnu_32bit | succeeded |\r\n| build_driver_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_driver_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| build_driver_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_infrastructure_integration_tests_azspice_gnu_32bit | succeeded |\r\n| build_infrastructure_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_infrastructure_integration_tests_ex1a_cce_32bit | succeeded |\r\n| build_infrastructure_integration_tests_ex1a_cce_64bit | succeeded |\r\n| build_infrastructure_unit_tests_azspice_gnu_32bit | succeeded |\r\n| build_infrastructure_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_infrastructure_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| build_infrastructure_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_io_demo_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_io_demo_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_io_demo_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_io_demo_ex1a_cce_fast-debug-32bit | succeeded |\r\n| build_io_demo_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_io_demo_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_io_demo_ex1a_gnu_fast-debug-32bit | succeeded |\r\n| build_io_demo_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_io_demo_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_io_demo_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_lbc_demo_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lbc_demo_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lbc_demo_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lbc_demo_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric_xios_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_lfric_xios_integration_tests_ex1a_cce_64bit | succeeded |\r\n| build_lfric_xios_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_lfric_xios_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_mesh_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_tools_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_tools_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_mesh_tools_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_mesh_tools_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_mesh_tools_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_tools_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_mesh_tools_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_science_unit_tests_azspice_gnu_32bit | succeeded |\r\n| build_science_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_science_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| build_science_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_simple_diffusion_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_simple_diffusion_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_simple_diffusion_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_simple_diffusion_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_simple_diffusion_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_simple_diffusion_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_simple_diffusion_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_skeleton_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_skeleton_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_skeleton_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_skeleton_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_skeleton_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_skeleton_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_skeleton_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| check_coupled_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_coupled_default-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_coupled_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_coupled_default-C12_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_io_demo_default-C24_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_io_demo_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_io_demo_default-C24_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_io_demo_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_io_demo_multifile-C24_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_io_demo_multifile-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_io_demo_multifile-C24_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_io_demo_multifile-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_io_demo_multifile-C24_ex1a_gnu_fast-debug-32bit | succeeded |\r\n| check_io_demo_multifile-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_ConstantLBC-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_ConstantLBC-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_lbc_demo_ConstantLBC-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_ConstantLBC-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_1x1P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_1x1P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_2x2P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_2x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_8x2P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_8x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_lbc_demo_default-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_default-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_lbc_demo_default-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_default-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c1_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c2_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c2_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c3_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c3_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c3_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-maps_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-maps_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-maps_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op-nonuniform_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op-nonuniform_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op-nonuniform_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-rotated_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-rotated_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-rotated_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_equator-band_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_equator-band_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_equator-band_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_equator_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_equator_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_equator_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_mesh_tools_falklands_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_falklands_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_falklands_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_london-model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_london-model_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_london-model_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_nzlam4_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_nzlam4_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_nzlam4_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-bi-periodic_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-bi-periodic_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-bi-periodic_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-maps_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-maps_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-maps_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-non-periodic_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-non-periodic_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-non-periodic_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-op-lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-op-lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-op-lam_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-centres_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-centres_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-centres_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-nodes_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-nodes_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-nodes_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-points_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-points_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-points_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-x_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-x_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-x_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-y_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-y_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-y_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_polar_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_polar_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_polar_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_uk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_uk_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_uk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_var-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_var-seuk_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_var-seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_simple_diffusion_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_simple_diffusion_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_simple_diffusion_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| check_skeleton_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_skeleton_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_skeleton_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| config_dump_checker | succeeded |\r\n| export-source | succeeded |\r\n| export-source_azspice | succeeded |\r\n| export-source_ex1a | succeeded |\r\n| global_variables_checker | succeeded |\r\n| housekeep_azspice | succeeded |\r\n| housekeep_ex1a | succeeded |\r\n| python_unit_tests | succeeded |\r\n| remote-init_azspice | succeeded |\r\n| remote-init_ex1a | succeeded |\r\n| rose-stem_lint_checker | succeeded |\r\n| run_coupled_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_coupled_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_coupled_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_coupled_default-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_coupled_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_coupled_default-C12_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_coupling_unit_tests_azspice_gnu_32bit | succeeded |\r\n| run_coupling_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_coupling_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| run_coupling_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_driver_unit_tests_azspice_gnu_32bit | succeeded |\r\n| run_driver_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_driver_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| run_driver_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_infrastructure_integration_tests_azspice_gnu_32bit | succeeded |\r\n| run_infrastructure_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_infrastructure_integration_tests_ex1a_cce_32bit | succeeded |\r\n| run_infrastructure_integration_tests_ex1a_cce_64bit | succeeded |\r\n| run_infrastructure_unit_tests_azspice_gnu_32bit | succeeded |\r\n| run_infrastructure_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_infrastructure_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| run_infrastructure_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_io_demo_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_io_demo_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_io_demo_default-C24_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_io_demo_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_io_demo_default-C24_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_io_demo_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_io_demo_multifile-C24_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_io_demo_multifile-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_io_demo_multifile-C24_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_io_demo_multifile-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_io_demo_multifile-C24_ex1a_gnu_fast-debug-32bit | succeeded |\r\n| run_io_demo_multifile-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_io_demo_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_io_demo_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_lbc_demo_ConstantLBC-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_ConstantLBC-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lbc_demo_ConstantLBC-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_ConstantLBC-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_IntegerFields-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_IntegerFields-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lbc_demo_IntegerFields-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_IntegerFields-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_1x1P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_1x1P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_2x2P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_2x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_8x2P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_8x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lbc_demo_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_default-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_default-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lbc_demo_default-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_default-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric_xios_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_lfric_xios_integration_tests_ex1a_cce_64bit | succeeded |\r\n| run_lfric_xios_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_lfric_xios_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_mesh_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_1x1P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_2x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_8x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_canned_cubedsphere_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_canned_planar_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c1_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c2_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c2_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c3_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c3_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c3_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-maps_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-maps_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-maps_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op-nonuniform_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op-nonuniform_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op-nonuniform_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-rotated_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-rotated_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-rotated_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_equator-band_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_equator-band_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_equator-band_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_equator_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_equator_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_equator_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_mesh_tools_falklands_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_falklands_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_falklands_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_london-model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_london-model_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_london-model_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_nzlam4_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_nzlam4_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_nzlam4_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-bi-periodic_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-bi-periodic_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-bi-periodic_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-maps_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-maps_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-maps_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-non-periodic_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-non-periodic_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-non-periodic_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-op-lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-op-lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-op-lam_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-centres_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-centres_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-centres_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-nodes_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-nodes_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-nodes_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-points_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-points_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-points_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-x_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-x_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-x_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-y_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-y_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-y_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_polar_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_polar_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_polar_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_uk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_uk_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_uk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_mesh_tools_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_mesh_tools_var-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_var-seuk_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_var-seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_science_unit_tests_azspice_gnu_32bit | succeeded |\r\n| run_science_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_science_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| run_science_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_simple_diffusion_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_simple_diffusion_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_simple_diffusion_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_simple_diffusion_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_simple_diffusion_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_simple_diffusion_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_simple_diffusion_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_skeleton_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_skeleton_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_skeleton_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_skeleton_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_skeleton_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_skeleton_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_skeleton_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| site_validator | succeeded |\r\n| style_checker | succeeded |\r\n| validate_rose_meta | succeeded |\r\n
\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel\r\n interface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 204, "repository": "MetOffice/lfric_core", "title": "reducing post-processing of XIOS output", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/204"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjSRtQ", "labels": ["cla-signed"], "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["EdHone"], "sciTech Review": "EdHone", "status": "Changes Requested", "title": "reducing post-processing of XIOS output"}, {"assignees": ["mo-marqh"], "code Review": "ericaneininger", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @EdHone \r\nCode Reviewer: @ericaneininger \r\n\r\n\r\n\r\nThis change provides extra configuration to the output file metadata, using an XIOS `scalar` to define a container for a forecast reference time that will be populated by lfric_core's lfric_xios interface (see linked PR)\r\n\r\n\r\n- linked MetOffice/lfric_core#204\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource\r\n and have tests been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n# Test Suite Results - lfric_apps - scalar_frt/run2\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | scalar_frt/run2 |\r\n| Suite User | mark.hedley |\r\n| Workflow Start | 2026-01-06T15:34:20 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [mo-marqh/lfric_apps@scalar_frt](https://github.com/mo-marqh/lfric_apps/tree/scalar_frt) | False |\r\n| lfric_core | [mo-marqh/lfric_core@06cc787](https://github.com/mo-marqh/lfric_core/tree/06cc787) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n
\r\n:x: failed tasks - 2\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_fast-debug-64bit | failed |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_fast-debug-64bit | failed |\r\n
\r\n
\r\n:white_check_mark: succeeded tasks - 1102\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| build_adjoint_tests_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_azspice_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_ex1a_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_adjoint_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_coupled_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gravity_wave_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_gravity_wave_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_gravity_wave_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_gravity_wave_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_gravity_wave_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gungho_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_gungho_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| build_gungho_model_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_model_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| build_gungho_model_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_gungho_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_tests_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_tests_integration_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_jules_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric2lfric_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric2lfric_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_full-debug-32bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_production-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_fast-debug-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_full-debug-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_production-32bit | succeeded |\r\n| build_lfric_coupled_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_linear_model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_model_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_linear_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_mesh_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_name_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_ngarch_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_ngarch_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_ngarch_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_ngarch_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_physics_schemes_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_physics_schemes_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_shallow_water_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_shallow_water_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_shallow_water_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_shallow_water_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_solver_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_solver_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_solver_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_transport_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_transport_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_transport_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| check_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200_realorog-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200_realorog-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-nrun-v-crun | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-nrun-v-crun | succeeded |\r\n| check_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_runge-kutta-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_runge-kutta-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_semi-implicit-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_semi-implicit-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_nwp_gal9-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_nwp_gal9-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jules_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-seuk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_chem_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_chem_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9_debug-C12_azspice_gnu_full-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_debug-C12_ex1a_cce_full-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_noukca_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_noukca_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_zero-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_zero-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| config_dump_checker | succeeded |\r\n| export-source | succeeded |\r\n| export-source_azspice | succeeded |\r\n| export-source_ex1a | succeeded |\r\n| export-weights_azspice | succeeded |\r\n| export-weights_ex1a | succeeded |\r\n| fcm_make2_drivers | succeeded |\r\n| fcm_make2_lfric_coupled_ocean_ex1a_cce_fast-debug-64bit | succeeded |\r\n| fcm_make_drivers | succeeded |\r\n| fcm_make_lfric_coupled_ocean_ex1a_cce_fast-debug-64bit | succeeded |\r\n| fcm_make_lfric_coupled_river_ex1a_cce_fast-debug-64bit | succeeded |\r\n| generate_weights_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet_lbc_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-falklands_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_azspice_weightgen_script | succeeded |\r\n| global_variables_checker | succeeded |\r\n| local_build_test | succeeded |\r\n| macro_chains_checker | succeeded |\r\n| perftools-export_gungho_model_baroclinic-profile_perf-C24_MG_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| pert_compare_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| pert_compare_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_cylinder_xz-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_cylinder_xz-BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| python_unit_tests | succeeded |\r\n| remote-init_azspice | succeeded |\r\n| remote-init_ex1a | succeeded |\r\n| rose-stem_lint_checker | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_adjoint_tests_canned_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_canned_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_azspice_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_ex1a_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_varying_ls-C12_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_adjoint_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_coupled_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gravity_wave_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_gravity_wave_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gungho_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_gungho_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit_pert_off | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit_pert_off | succeeded |\r\n| run_gungho_model_baroclinic-profile_perf-C24_MG_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_gungho_model_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200_realorog-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200_realorog-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_no-timestep-method-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_no-timestep-method-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_runge-kutta-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_runge-kutta-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_semi-implicit-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_semi-implicit-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_gungho_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_tests_integration_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_nwp_gal9-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_nwp_gal9-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jules_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jules_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-seuk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric_atm_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_canned_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_chem_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_chem_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C12_azspice_gnu_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C12_ex1a_cce_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_linear_model_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_zero-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_zero-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_linear_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_mesh_BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP2x2-50000x50000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1500x1500_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_C16_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_rot_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_rot_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_falklands_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_falklands_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_seuk_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_seuk_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_cylinder_xz-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_cylinder_xz-BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_name_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_ngarch_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_physics_schemes_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_physics_schemes_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_shallow_water_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_shallow_water_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_transport_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| site_validator | succeeded |\r\n| style_checker | succeeded |\r\n| test_launch-exe | succeeded |\r\n| validate_rose_meta | succeeded |\r\n
\r\n
\r\n:hourglass: waiting tasks - 2\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| housekeep_azspice | waiting |\r\n| housekeep_ex1a | waiting |\r\n
\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any psyclone related code (eg. PsyKAl-lite, Kernal\r\n inteface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 90, "repository": "MetOffice/lfric_apps", "title": "File metadata and Forecast reference Time Scalar to reduce post processing from lfric core", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/90"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjSRt8", "labels": ["cla-signed"], "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["EdHone"], "sciTech Review": "EdHone", "status": "Changes Requested", "title": "File metadata and Forecast reference Time Scalar to reduce post processing from lfric core"}, {"assignees": ["james-bruten-mo"], "code Review": "jennyhickson", "content": {"body": "This reusable workflow adds the ability to edit the Simulation Systems Review Tracker project.\r\nBased on the reviewer entries in the PR template it will fill in the reviewer fields in the tracker.\r\nBased on completed reviews by the SR and CR it will modify the project state.\r\nIt automatically adds the PR author as an assignee.\r\nIt will request a review from the CR if they are not already added.\r\n\r\nTo edit projects requires a PAT with project write access to be added as a secret to each calling repository. I propose we add a PAT to the umadmin account with that permission and use this as the secret for each repo.\r\n\r\nThere's a PR in the git_playground demonstrating it working https://github.com/MetOffice/git_playground/pull/112\r\n\r\nWe probably also want to check it works on the git_playground as a reusable workflow as well.", "number": 52, "repository": "MetOffice/growss", "title": "Action to move PRs through project state", "type": "PullRequest", "url": "https://github.com/MetOffice/growss/pull/52"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjVJNs", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/growss", "reviewers": ["yaswant", "jennyhickson", "t00sa"], "sciTech Review": "yaswant", "status": "Done", "title": "Action to move PRs through project state"}, {"assignees": ["alanjhewitt"], "code Review": "cameronbateman-mo", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @melissaebrooks \r\nCode Reviewer: @cameronbateman-mo \r\n\r\n\r\n\r\n\r\n\r\nI developed aerosol AOD diagnostics in FCM 440\r\n\r\nThe outputs looked fine at low resolution, but recent high resolution modelling has indicated that I got the addressing wrong.\r\n\r\nI made a bug fix branch in FCM 1089 and will now fix it in GitHub branch.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource\r\n and have tests been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n# Test Suite Results - lfric_apps - AOD_bug/run2\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | AOD_bug/run2 |\r\n| Suite User | alan.j.hewitt |\r\n| Workflow Start | 2025-12-16T16:00:21 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [alanjhewitt/lfric_apps@AOD_bug](https://github.com/alanjhewitt/lfric_apps/tree/AOD_bug) | False |\r\n| lfric_core | [MetOffice/lfric_core@2025.12.1](https://github.com/MetOffice/lfric_core/tree/2025.12.1) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n
\r\n:x: failed tasks - 1\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| run_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | failed |\r\n
\r\n
\r\n:white_check_mark: succeeded tasks - 1102\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| build_adjoint_tests_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| site_validator | succeeded |\r\n| style_checker | succeeded |\r\n| test_launch-exe | succeeded |\r\n| validate_rose_meta | succeeded |\r\n
\r\n
\r\n:hourglass: waiting tasks - 1\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| housekeep_azspice | waiting |\r\n
\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any psyclone related code (eg. PsyKAl-lite, Kernal\r\n inteface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 94, "repository": "MetOffice/lfric_apps", "title": "Bug in AOD diagnostics", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/94"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjVKD8", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["melissaebrooks", "cameronbateman-mo"], "sciTech Review": "melissaebrooks", "status": "Done", "title": "Bug in AOD diagnostics"}, {"assignees": ["jennyhickson"], "code Review": "james-bruten-mo", "content": {"body": "Sci/Tech Reviewer: @yaswant \r\nCode Reviewer: @james-bruten-mo \r\n\r\n# Description\r\n\r\n## Summary\r\n\r\nCreate a new helper script for managing milestones across multiple repositories. Milestones can be created, updated, listed, closed or deleted. \r\n\r\nMilestones have been setup across the repositories, e.g. \r\nhttps://github.com/MetOffice/um/milestones\r\nhttps://github.com/MetOffice/lfric_apps/milestones\r\n\r\nand closing and editing have been tested using git_playground. \r\n## Changes\r\n\r\nSingle new script. \r\n\r\n## Dependency\r\n\r\nScript is dependant on having the right priveledges and gh api setup. \r\n\r\n## Impact\r\n\r\nNo impact. \r\n\r\n## Issues addressed\r\n\r\nResolves\r\n\r\n_List issue(s) related to this PR._\r\n\r\n## Coordinated merge\r\n\r\n_Specify any coordinated merges here._\r\n\r\n\r\n## Checklist\r\n\r\n- [x ] I have performed a self-review of my own changes\r\n", "number": 155, "repository": "MetOffice/SimSys_Scripts", "title": "Milestone manager", "type": "PullRequest", "url": "https://github.com/MetOffice/SimSys_Scripts/pull/155"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjVcPM", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/SimSys_Scripts", "reviewers": ["yaswant", "james-bruten-mo"], "sciTech Review": "yaswant", "status": "Done", "title": "Milestone manager"}, {"assignees": ["james-bruten-mo"], "content": {"body": "See #52\r\nCommitting this branch to develop in order to test in the git_playground", "number": 53, "repository": "MetOffice/growss", "title": "Project edit action", "type": "PullRequest", "url": "https://github.com/MetOffice/growss/pull/53"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjV2Cw", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/growss", "status": "Done", "title": "Project edit action"}, {"assignees": ["Pierre-siddall"], "code Review": "james-bruten-mo", "content": {"body": "# Description\r\n\r\nFixing suite_report_git.py\r\n\r\n## Summary\r\nCurrently suite_report_git.py does not provide a link to the cylc review page for a suite name and reports all succeeding tasks to make the suite report shorter to read, only failing tasks need to be reported additionally it would be useful for code reviewers if a link to the cylc review page for a suite run was provided as part of the report to enable clearer feedback through easier diagnosis of failing tasks. \r\n\r\n## Changes\r\n\r\nThis PR will change the formatting of the suite report \r\n\r\n## Dependency\r\n\r\nN/A\r\n\r\n## Impact\r\n\r\nN/A\r\n## Issues addressed\r\n\r\nResolves #156 and resolves #157 \r\n\r\n## Coordinated merge\r\nN/A\r\n\r\n\r\n## Checklist\r\n\r\n- [x] I have performed a self-review of my own changes\r\n\r\n\r\n## Trac.log\r\n# Test Suite Results - um - test_report/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [test_report/run1](https://cylchub/services/cylc-review/cycles/pierre.siddall/?suite=test_report%2Frun1) |\r\n| Suite User | pierre.siddall |\r\n| Workflow Start | 2026-01-14T16:35:03 |\r\n| Groups Run | check_groups_coverage |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| mule | [MetOffice/mule@2025.10.1](https://github.com/MetOffice/mule/tree/2025.10.1) | True |\r\n| shumlib | [MetOffice/shumlib@2025.10.1](https://github.com/MetOffice/shumlib/tree/2025.10.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [Pierre-siddall/SimSys_Scripts@fix_suite_report](https://github.com/Pierre-siddall/SimSys_Scripts/tree/fix_suite_report) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n| um | [Pierre-siddall/um@test-report](https://github.com/Pierre-siddall/um/tree/test-report) | False |\r\n| um_aux | [MetOffice/um_aux@2025.12.1](https://github.com/MetOffice/um_aux/tree/2025.12.1) | True |\r\n| um_meta | [MetOffice/um_meta@2025.12.1](https://github.com/MetOffice/um_meta/tree/2025.12.1) | True |\r\n\r\n## Approvals\r\n### Code Owners\r\n* No UM Code Owners Required\r\n### Config Owners\r\nNo UM Config Owners Required\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 5\r\n\r\n\r\n", "number": 158, "repository": "MetOffice/SimSys_Scripts", "title": "Fix suite report", "type": "PullRequest", "url": "https://github.com/MetOffice/SimSys_Scripts/pull/158"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjYe2E", "labels": ["enhancement"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/SimSys_Scripts", "reviewers": ["james-bruten-mo", "james-bruten-mo", "james-bruten-mo"], "status": "Done", "title": "Fix suite report"}, {"code Review": "Pierre-siddall", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @Pierre-siddall \r\n\r\n\r\n\r\nThis is a trivial change to look at the working practices and add my name to the `contributors.md` file. I haven't run any testing.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's style guidelines\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have tests been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any psyclone related code (eg. PsyKAl-lite, Kernal\r\n inteface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 96, "repository": "MetOffice/lfric_apps", "title": "Add Harry Shepherd to CONTRIBUTORS.md", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/96"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjYo8E", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["Pierre-siddall"], "status": "Done", "title": "Add Harry Shepherd to CONTRIBUTORS.md"}, {"code Review": "Pierre-siddall", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @Pierre-siddall \r\n\r\n\r\n\r\nThis is a trivial change to look at the working practices and add my name to the contributors.md file. I haven't run any testing.\r\n\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid understanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite\r\n using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel\r\n interface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 207, "repository": "MetOffice/lfric_core", "title": "Add Harry Shepherd to CONTRIBUTORS.md", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/207"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjYpJY", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["Pierre-siddall"], "status": "Done", "title": "Add Harry Shepherd to CONTRIBUTORS.md"}, {"assignees": ["james-bruten-mo"], "code Review": "yaswant", "content": {"body": "The grep in the check-cr-approved action doesn't allow for usernames with capitalised letters. Make the grep case insensitive to allow for this", "number": 55, "repository": "MetOffice/growss", "title": "make grep case insensitive", "type": "PullRequest", "url": "https://github.com/MetOffice/growss/pull/55"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjYzSk", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/growss", "reviewers": ["yaswant"], "status": "Done", "title": "make grep case insensitive"}, {"assignees": ["bblay-mo"], "content": {"body": "# PR Summary\r\nAdd Section 20 diagnostic _thickness of geopotential height at two pressure levels_, as described in https://github.com/MetOffice/Section20/issues/11.\r\n\r\nTodo:\r\n - [ ] **Wait for Paul to make suites work with lfric apps vn3.0/GitHub**\r\n - [ ] I've discovered that we don't need the DOF loop in the kernel because we're processing lowest order W3 data. However, I don' t know if we can guarantee that we'll only see such data in the future. I need to either a) discuss this with someone who knows the use cases / problem domain, or just leave the loop in to be future-proof - but does that incur a significant overhead?\r\n - [ ] Are the standard name and long name correct?\r\n - [ ] [How] do we check the new fields are correct using KGOs?\r\n - The kgo update didn't do anything. I assume we need to wait for the suite upgrade.\r\n - [ ] I can't remember why the thickness fields are initialised to 1.0 before the kernel is called, and not 0.0.\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's style guidelines\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have tests been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any psyclone related code (eg. PsyKAl-lite, Kernal\r\n inteface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 98, "repository": "MetOffice/lfric_apps", "title": "S20 Diags: geopot thickness", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/98"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjZLG0", "labels": ["cla-signed"], "repository": "https://github.com/MetOffice/lfric_apps", "status": "In Progress", "title": "S20 Diags: geopot thickness"}, {"assignees": ["ricky-lv426"], "code Review": "ericaneininger", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @MetBenjaminWent\r\nCode Reviewer: @ericaneininger\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have tests been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any psyclone related code (eg. PsyKAl-lite, Kernal\r\n inteface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [x] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [x] Documentation is complete and accurate\r\n- [x] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n", "number": 99, "repository": "MetOffice/lfric_apps", "title": "Gregory-Rowntree convection - PSyclone optimisation and conversion from CELL_COLUMN to DOMAIN kernel", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/99"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjZbG8", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["ericaneininger", "MetBenjaminWent", "ericaneininger"], "sciTech Review": "MetBenjaminWent", "status": "Done", "title": "Gregory-Rowntree convection - PSyclone optimisation and conversion from CELL_COLUMN to DOMAIN kernel"}, {"assignees": ["Adrian-Lock"], "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @P-Burns \r\nCode Reviewer: \r\n\r\n\r\n\r\n\r\nThe boundary_layer code imported to lfric_apps from the UM contained a number of old options that are no longer used and are not even available in lfric_apps. Here, I'm taking this opportunity to remove 3 of these switches (l_lambdam2, l_full_lambdas and var_diags_opt). This then also permits a more logical reorganisation of the code in ex_coef that should make it easier to read and also to modify further in the future. Scientifically there are no changes at all and the KGO are preserved.\r\nNote that I did also try removing a 4th hardwired switch, l_use_var_fixes, but so-doing broke KGO (for just the \r\ncoupled_nwp_gal9_64bit app, presumably due to some interaction with the compiler optimisation in the subroutine excf_nl.F90) so I've have reverted that change in the latest revision. Subject to discussion with reviewers.\r\n\r\nUpdate 21/01/2026: following discussions with the Sci-tech reviewer, I've now removed the redundant variable h_blend_orog all through the LFRic code tree (it was being passed from JULES but always containing zeros as the effective orographic roughness scheme is not available in LFRic, and has been superseded by the distributed version in all configurations). All developer tests still maintain kgo, see updated trac.log below.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes): no changes to kgo\r\n- [x] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.): no new functionality added\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource\r\n and have tests been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes): no new tests added or needed\r\n\r\n\r\n\r\n### trac.log\r\n\r\n# Test Suite Results - lfric_apps - ex_coef_tidy/run4\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [ex_coef_tidy/run4](https://cylchub/services/cylc-review/cycles/adrian.lock/?suite=ex_coef_tidy%2Frun4) |\r\n| Suite User | adrian.lock |\r\n| Workflow Start | 2026-01-22T21:07:25 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [Adrian-Lock/lfric_apps@ex_coef_tidy](https://github.com/Adrian-Lock/lfric_apps/tree/ex_coef_tidy) | False |\r\n| lfric_core | [MetOffice/lfric_core@5d4d72f](https://github.com/MetOffice/lfric_core/tree/5d4d72f) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 1106\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [x] None of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly: no changes needed\r\n\r\n## PSyclone Approval\r\n\r\n- [x] If you have edited any psyclone related code (eg. PsyKAl-lite, Kernal\r\n inteface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 101, "repository": "MetOffice/lfric_apps", "title": "Remove redundant options and restructure code in ex_coef to be easier to follow and modify further in future", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/101"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjZkl0", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["P-Burns"], "sciTech Review": "P-Burns", "status": "Code Review", "title": "Remove redundant options and restructure code in ex_coef to be easier to follow and modify further in future"}, {"code Review": "mike-hobson ", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @mike-hobson \r\n\r\n\r\n\r\n\r\n\r\nUpdates to the documentation following migration of the code to Github.\r\n\r\nRetires FCM references and adds git advice. Also includes instructions for building documentation and updates the summary of software requirements.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid understanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite\r\n using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel\r\n interface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\nSkipping Sci/Tech as this is a trivial, documentation-only PR\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [x] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n", "number": 208, "repository": "MetOffice/lfric_core", "title": "Remove references to FCM following Git migration", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/208"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjZ1xU", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["mike-hobson", "mike-hobson"], "status": "Done", "title": "Remove references to FCM following Git migration"}, {"assignees": ["james-bruten-mo"], "code Review": "Pierre-siddall", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @Pierre-siddall \r\n\r\n\r\n\r\nIt's been spotted that there's still a broken symlink pointing at the xc40s. This is causing some problems for extracting via rose-extract so fixing here.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have tests been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any psyclone related code (eg. PsyKAl-lite, Kernal\r\n inteface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 102, "repository": "MetOffice/lfric_apps", "title": "update symlink", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/102"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjb0M0", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["Pierre-siddall", "yaswant"], "status": "Done", "title": "update symlink"}, {"code Review": "@MatthewHambley", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: N/A\r\nCode Reviewer: @MatthewHambley \r\n\r\n\r\n\r\n\r\nThe number of leading spaces from Makefile messages across the code base is inconistent and annoying - this PR fixes this.\r\n\r\n\r\n\r\n\r\n- closes #209 \r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite\r\n using this branch\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (e.g. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (e.g. system\r\n tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource\r\n and have been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n# Test Suite Results - lfric_core - lfric_core-consistent-test-logging/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | lfric_core-consistent-test-logging/run1 |\r\n| Suite User | edward.hone |\r\n| Workflow Start | 2026-01-09T11:04:12 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| lfric_core | [EdHone/lfric_core@consistent-test-logging](https://github.com/EdHone/lfric_core/tree/consistent-test-logging) | False |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n
\r\n:white_check_mark: succeeded tasks - 372\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| build_coupled_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_coupled_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_coupled_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_coupled_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_coupling_unit_tests_azspice_gnu_32bit | succeeded |\r\n| build_coupling_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_coupling_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| build_coupling_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_driver_unit_tests_azspice_gnu_32bit | succeeded |\r\n| build_driver_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_driver_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| build_driver_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_infrastructure_integration_tests_azspice_gnu_32bit | succeeded |\r\n| build_infrastructure_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_infrastructure_integration_tests_ex1a_cce_32bit | succeeded |\r\n| build_infrastructure_integration_tests_ex1a_cce_64bit | succeeded |\r\n| build_infrastructure_unit_tests_azspice_gnu_32bit | succeeded |\r\n| build_infrastructure_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_infrastructure_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| build_infrastructure_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_io_demo_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_io_demo_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_io_demo_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_io_demo_ex1a_cce_fast-debug-32bit | succeeded |\r\n| build_io_demo_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_io_demo_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_io_demo_ex1a_gnu_fast-debug-32bit | succeeded |\r\n| build_io_demo_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_io_demo_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_io_demo_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_lbc_demo_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lbc_demo_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lbc_demo_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lbc_demo_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric_xios_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_lfric_xios_integration_tests_ex1a_cce_64bit | succeeded |\r\n| build_lfric_xios_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_lfric_xios_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_mesh_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_tools_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_tools_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_mesh_tools_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_mesh_tools_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_mesh_tools_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_tools_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_mesh_tools_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_science_unit_tests_azspice_gnu_32bit | succeeded |\r\n| build_science_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_science_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| build_science_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_simple_diffusion_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_simple_diffusion_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_simple_diffusion_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_simple_diffusion_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_simple_diffusion_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_simple_diffusion_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_simple_diffusion_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_skeleton_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_skeleton_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_skeleton_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_skeleton_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_skeleton_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_skeleton_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_skeleton_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| check_coupled_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_coupled_default-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_coupled_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_coupled_default-C12_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_io_demo_default-C24_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_io_demo_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_io_demo_default-C24_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_io_demo_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_io_demo_multifile-C24_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_io_demo_multifile-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_io_demo_multifile-C24_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_io_demo_multifile-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_io_demo_multifile-C24_ex1a_gnu_fast-debug-32bit | succeeded |\r\n| check_io_demo_multifile-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_ConstantLBC-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_ConstantLBC-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_lbc_demo_ConstantLBC-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_ConstantLBC-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_1x1P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_1x1P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_2x2P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_2x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_8x2P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_8x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_lbc_demo_default-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_default-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_lbc_demo_default-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_default-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c1_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c2_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c2_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c3_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c3_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c3_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-maps_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-maps_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-maps_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op-nonuniform_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op-nonuniform_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op-nonuniform_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-rotated_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-rotated_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-rotated_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_equator-band_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_equator-band_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_equator-band_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_equator_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_equator_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_equator_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_mesh_tools_falklands_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_falklands_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_falklands_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_london-model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_london-model_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_london-model_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_nzlam4_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_nzlam4_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_nzlam4_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-bi-periodic_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-bi-periodic_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-bi-periodic_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-maps_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-maps_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-maps_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-non-periodic_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-non-periodic_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-non-periodic_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-op-lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-op-lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-op-lam_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-centres_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-centres_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-centres_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-nodes_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-nodes_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-nodes_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-points_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-points_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-points_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-x_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-x_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-x_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-y_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-y_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-y_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_polar_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_polar_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_polar_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_uk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_uk_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_uk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_var-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_var-seuk_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_var-seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_simple_diffusion_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_simple_diffusion_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_simple_diffusion_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| check_skeleton_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_skeleton_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_skeleton_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| config_dump_checker | succeeded |\r\n| export-source | succeeded |\r\n| export-source_azspice | succeeded |\r\n| export-source_ex1a | succeeded |\r\n| global_variables_checker | succeeded |\r\n| housekeep_azspice | succeeded |\r\n| housekeep_ex1a | succeeded |\r\n| python_unit_tests | succeeded |\r\n| remote-init_azspice | succeeded |\r\n| remote-init_ex1a | succeeded |\r\n| rose-stem_lint_checker | succeeded |\r\n| run_coupled_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_coupled_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_coupled_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_coupled_default-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_coupled_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_coupled_default-C12_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_coupling_unit_tests_azspice_gnu_32bit | succeeded |\r\n| run_coupling_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_coupling_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| run_coupling_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_driver_unit_tests_azspice_gnu_32bit | succeeded |\r\n| run_driver_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_driver_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| run_driver_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_infrastructure_integration_tests_azspice_gnu_32bit | succeeded |\r\n| run_infrastructure_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_infrastructure_integration_tests_ex1a_cce_32bit | succeeded |\r\n| run_infrastructure_integration_tests_ex1a_cce_64bit | succeeded |\r\n| run_infrastructure_unit_tests_azspice_gnu_32bit | succeeded |\r\n| run_infrastructure_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_infrastructure_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| run_infrastructure_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_io_demo_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_io_demo_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_io_demo_default-C24_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_io_demo_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_io_demo_default-C24_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_io_demo_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_io_demo_multifile-C24_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_io_demo_multifile-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_io_demo_multifile-C24_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_io_demo_multifile-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_io_demo_multifile-C24_ex1a_gnu_fast-debug-32bit | succeeded |\r\n| run_io_demo_multifile-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_io_demo_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_io_demo_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_lbc_demo_ConstantLBC-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_ConstantLBC-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lbc_demo_ConstantLBC-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_ConstantLBC-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_IntegerFields-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_IntegerFields-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lbc_demo_IntegerFields-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_IntegerFields-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_1x1P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_1x1P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_2x2P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_2x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_8x2P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_8x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lbc_demo_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_default-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_default-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lbc_demo_default-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_default-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric_xios_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_lfric_xios_integration_tests_ex1a_cce_64bit | succeeded |\r\n| run_lfric_xios_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_lfric_xios_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_mesh_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_1x1P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_2x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_8x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_canned_cubedsphere_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_canned_planar_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c1_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c2_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c2_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c3_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c3_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c3_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-maps_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-maps_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-maps_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op-nonuniform_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op-nonuniform_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op-nonuniform_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-rotated_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-rotated_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-rotated_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_equator-band_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_equator-band_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_equator-band_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_equator_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_equator_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_equator_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_mesh_tools_falklands_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_falklands_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_falklands_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_london-model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_london-model_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_london-model_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_nzlam4_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_nzlam4_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_nzlam4_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-bi-periodic_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-bi-periodic_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-bi-periodic_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-maps_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-maps_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-maps_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-non-periodic_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-non-periodic_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-non-periodic_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-op-lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-op-lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-op-lam_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-centres_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-centres_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-centres_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-nodes_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-nodes_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-nodes_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-points_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-points_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-points_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-x_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-x_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-x_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-y_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-y_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-y_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_polar_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_polar_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_polar_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_uk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_uk_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_uk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_mesh_tools_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_mesh_tools_var-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_var-seuk_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_var-seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_science_unit_tests_azspice_gnu_32bit | succeeded |\r\n| run_science_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_science_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| run_science_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_simple_diffusion_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_simple_diffusion_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_simple_diffusion_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_simple_diffusion_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_simple_diffusion_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_simple_diffusion_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_simple_diffusion_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_skeleton_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_skeleton_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_skeleton_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_skeleton_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_skeleton_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_skeleton_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_skeleton_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| site_validator | succeeded |\r\n| style_checker | succeeded |\r\n| validate_rose_meta | succeeded |\r\n
\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel\r\n interface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [x] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [x] Documentation is complete and accurate\r\n- [x] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n", "number": 210, "repository": "MetOffice/lfric_core", "title": "Remove additional leading space from make message calls", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/210"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjcOBI", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["MatthewHambley", "stevemullerworth"], "status": "Done", "title": "Remove additional leading space from make message calls"}, {"assignees": ["yaswant"], "code Review": "andrewcoughtrie", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: NA\r\nCode Reviewer: @andrewcoughtrie \r\n\r\nThe PR body was adding literal line breaks as specified in the template, which was not ideal. I have removed the 80-character markdown formatting restriction from the template to improve how it displays on GitHub PRs.\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n**NA**\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite\r\n using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n**NA**\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n**NA**\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [x] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [x] Documentation is complete and accurate\r\n- [x] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n", "number": 211, "repository": "MetOffice/lfric_core", "title": "Reformat pull request template", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/211"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjc3Vk", "labels": ["cla-modified"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["andrewcoughtrie", "andrewcoughtrie", "andrewcoughtrie"], "status": "In Progress", "title": "Reformat pull request template"}, {"assignees": ["yaswant"], "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: NA\r\nCode Reviewer: @james-bruten-mo \r\n\r\nThe PR body was adding literal line breaks as specified in the template, which was not ideal. I have removed the 80-character markdown formatting restriction from the template to improve how it displays on GitHub PRs.\r\n\r\nAs in MetOffice/lfric_core#211\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines [style guidelines] (https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid undertanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n**NA**\r\n- [ ] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have tests been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n**NA**\r\n- [ ] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n**NA**\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 109, "repository": "MetOffice/lfric_apps", "title": "Reformat pull request template", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/109"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjdFRk", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["james-bruten-mo"], "status": "Done", "title": "Reformat pull request template"}, {"code Review": "james-bruten-mo", "content": {"body": "Adding a link to the github support for reattaching forks and adding more detail on the process. \r\n\r\nhttps://wwwspice/~jennifer.hickson/simulation_systems/add_support_link/html/git_faq.html\r\n", "number": 550, "repository": "MetOffice/simulation-systems", "title": "Rework support request section", "type": "PullRequest", "url": "https://github.com/MetOffice/simulation-systems/pull/550"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjh2xU", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/simulation-systems", "reviewers": ["james-bruten-mo"], "status": "Done", "title": "Rework support request section"}, {"assignees": ["EdHone"], "code Review": "MatthewHambley", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @svadams \r\nCode Reviewer: @MatthewHambley \r\n\r\n\r\n\r\n\r\n\r\nAt the time of the vn3.0 release a fix was committed (MetOffice/lfric_core#170) which fixed an issue with file I/O frequencies being set to every timestep by default. The fix, however, does not set the frequency within LFRic for these files which could result in unexpected behaviour down the line. More details on the issue can be found in #171.\r\nThis change adds some code which can fetch the frequency of the file from the iodef.xml where possible. The code will:\r\n1. look for a frequency definition within the LFRic fortran code\r\n2. if there is none, it will take the frequency from the iodef.xml.\r\n3. If there is no frequency definition in the iodef.xml the model will fail in an XIOS call.\r\n\r\nThere are also some new tests which exercise the behaviour where the frequency is not set within the model. There are also a few QoL improvements to the `.gitignore` and some general updates to the testing framework to enable the new tests.\r\n\r\n\r\n- closes MetOffice/lfric_core#171\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite\r\n using this branch\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (e.g. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (e.g. system\r\n tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource\r\n and have been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n# Test Suite Results - lfric_core - lfric_core-171-iodef-files/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | lfric_core-171-iodef-files/run1 |\r\n| Suite User | edward.hone |\r\n| Workflow Start | 2026-01-12T11:35:07 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| lfric_core | [EdHone/lfric_core@171-iodef-files](https://github.com/EdHone/lfric_core/tree/171-iodef-files) | False |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n
\r\n:white_check_mark: succeeded tasks - 372\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| build_coupled_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_coupled_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_coupled_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_coupled_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_coupling_unit_tests_azspice_gnu_32bit | succeeded |\r\n| build_coupling_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_coupling_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| build_coupling_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_driver_unit_tests_azspice_gnu_32bit | succeeded |\r\n| build_driver_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_driver_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| build_driver_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_infrastructure_integration_tests_azspice_gnu_32bit | succeeded |\r\n| build_infrastructure_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_infrastructure_integration_tests_ex1a_cce_32bit | succeeded |\r\n| build_infrastructure_integration_tests_ex1a_cce_64bit | succeeded |\r\n| build_infrastructure_unit_tests_azspice_gnu_32bit | succeeded |\r\n| build_infrastructure_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_infrastructure_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| build_infrastructure_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_io_demo_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_io_demo_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_io_demo_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_io_demo_ex1a_cce_fast-debug-32bit | succeeded |\r\n| build_io_demo_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_io_demo_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_io_demo_ex1a_gnu_fast-debug-32bit | succeeded |\r\n| build_io_demo_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_io_demo_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_io_demo_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_lbc_demo_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lbc_demo_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lbc_demo_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lbc_demo_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric_xios_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_lfric_xios_integration_tests_ex1a_cce_64bit | succeeded |\r\n| build_lfric_xios_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_lfric_xios_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_mesh_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_tools_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_tools_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_mesh_tools_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_mesh_tools_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_mesh_tools_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_tools_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_mesh_tools_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_science_unit_tests_azspice_gnu_32bit | succeeded |\r\n| build_science_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_science_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| build_science_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_simple_diffusion_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_simple_diffusion_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_simple_diffusion_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_simple_diffusion_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_simple_diffusion_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_simple_diffusion_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_simple_diffusion_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_skeleton_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_skeleton_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_skeleton_ex1a_cce_full-debug-64bit | succeeded |\r\n| build_skeleton_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_skeleton_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_skeleton_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_skeleton_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| check_coupled_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_coupled_default-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_coupled_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_coupled_default-C12_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_io_demo_default-C24_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_io_demo_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_io_demo_default-C24_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_io_demo_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_io_demo_multifile-C24_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_io_demo_multifile-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_io_demo_multifile-C24_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_io_demo_multifile-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_io_demo_multifile-C24_ex1a_gnu_fast-debug-32bit | succeeded |\r\n| check_io_demo_multifile-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_ConstantLBC-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_ConstantLBC-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_lbc_demo_ConstantLBC-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_ConstantLBC-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_1x1P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_1x1P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_2x2P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_2x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_8x2P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_8x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_OutputOnLBC-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_lbc_demo_default-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_default-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_lbc_demo_default-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lbc_demo_default-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c1_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c2_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c2_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c3_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c3_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-c3_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-maps_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-maps_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-maps_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op-nonuniform_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op-nonuniform_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op-nonuniform_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-rotated_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-rotated_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere-rotated_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_cubedsphere_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_equator-band_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_equator-band_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_equator-band_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_equator_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_equator_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_equator_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_mesh_tools_falklands_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_falklands_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_falklands_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_london-model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_london-model_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_london-model_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_nzlam4_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_nzlam4_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_nzlam4_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-bi-periodic_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-bi-periodic_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-bi-periodic_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-maps_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-maps_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-maps_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-non-periodic_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-non-periodic_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-non-periodic_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-op-lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-op-lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-op-lam_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-centres_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-centres_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-centres_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-nodes_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-nodes_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-nodes_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-points_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-points_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-stretch-points_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-x_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-x_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-x_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-y_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-y_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_planar-trench-y_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_polar_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_polar_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_polar_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_uk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_uk_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_uk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_var-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_mesh_tools_var-seuk_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_mesh_tools_var-seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_simple_diffusion_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_simple_diffusion_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_simple_diffusion_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| check_skeleton_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_skeleton_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| check_skeleton_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| config_dump_checker | succeeded |\r\n| export-source | succeeded |\r\n| export-source_azspice | succeeded |\r\n| export-source_ex1a | succeeded |\r\n| global_variables_checker | succeeded |\r\n| housekeep_azspice | succeeded |\r\n| housekeep_ex1a | succeeded |\r\n| python_unit_tests | succeeded |\r\n| remote-init_azspice | succeeded |\r\n| remote-init_ex1a | succeeded |\r\n| rose-stem_lint_checker | succeeded |\r\n| run_coupled_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_coupled_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_coupled_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_coupled_default-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_coupled_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_coupled_default-C12_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_coupling_unit_tests_azspice_gnu_32bit | succeeded |\r\n| run_coupling_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_coupling_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| run_coupling_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_driver_unit_tests_azspice_gnu_32bit | succeeded |\r\n| run_driver_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_driver_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| run_driver_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_infrastructure_integration_tests_azspice_gnu_32bit | succeeded |\r\n| run_infrastructure_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_infrastructure_integration_tests_ex1a_cce_32bit | succeeded |\r\n| run_infrastructure_integration_tests_ex1a_cce_64bit | succeeded |\r\n| run_infrastructure_unit_tests_azspice_gnu_32bit | succeeded |\r\n| run_infrastructure_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_infrastructure_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| run_infrastructure_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_io_demo_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_io_demo_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_io_demo_default-C24_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_io_demo_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_io_demo_default-C24_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_io_demo_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_io_demo_multifile-C24_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_io_demo_multifile-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_io_demo_multifile-C24_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_io_demo_multifile-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_io_demo_multifile-C24_ex1a_gnu_fast-debug-32bit | succeeded |\r\n| run_io_demo_multifile-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_io_demo_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_io_demo_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_lbc_demo_ConstantLBC-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_ConstantLBC-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lbc_demo_ConstantLBC-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_ConstantLBC-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_IntegerFields-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_IntegerFields-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lbc_demo_IntegerFields-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_IntegerFields-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_1x1P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_1x1P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_2x2P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_2x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_8x2P_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_8x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_OutputOnLBC-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lbc_demo_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_default-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_default-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lbc_demo_default-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lbc_demo_default-lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric_xios_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_lfric_xios_integration_tests_ex1a_cce_64bit | succeeded |\r\n| run_lfric_xios_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_lfric_xios_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_mesh_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_1x1P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_2x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_8x2P_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_canned_cubedsphere_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_canned_planar_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c1_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c2_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c2_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c3_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c3_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-c3_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-maps_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-maps_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-maps_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op-nonuniform_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op-nonuniform_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op-nonuniform_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-rotated_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-rotated_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere-rotated_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_cubedsphere_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_equator-band_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_equator-band_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_equator-band_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_equator_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_equator_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_equator_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_mesh_tools_falklands_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_falklands_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_falklands_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_london-model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_london-model_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_london-model_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_nzlam4_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_nzlam4_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_nzlam4_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-bi-periodic_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-bi-periodic_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-bi-periodic_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-lbc_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-maps_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-maps_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-maps_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-non-periodic_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-non-periodic_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-non-periodic_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-op-lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-op-lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-op-lam_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-centres_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-centres_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-centres_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-nodes_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-nodes_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-nodes_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-points_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-points_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-stretch-points_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-x_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-x_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-x_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-y_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-y_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_planar-trench-y_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_polar_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_polar_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_polar_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_uk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_uk_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_uk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_mesh_tools_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_mesh_tools_var-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_tools_var-seuk_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_mesh_tools_var-seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_science_unit_tests_azspice_gnu_32bit | succeeded |\r\n| run_science_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_science_unit_tests_ex1a_gnu_32bit | succeeded |\r\n| run_science_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_simple_diffusion_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_simple_diffusion_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_simple_diffusion_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_simple_diffusion_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_simple_diffusion_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_simple_diffusion_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_simple_diffusion_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_skeleton_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_skeleton_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_skeleton_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_skeleton_default-C24_ex1a_cce_full-debug-64bit | succeeded |\r\n| run_skeleton_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_skeleton_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_skeleton_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| site_validator | succeeded |\r\n| style_checker | succeeded |\r\n| validate_rose_meta | succeeded |\r\n
\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel\r\n interface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 212, "repository": "MetOffice/lfric_core", "title": "Take XIOS file frequency configuration from iodef.xml where possible", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/212"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjh81A", "labels": ["cla-modified"], "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["svadams", "MatthewHambley", "stevemullerworth", "mike-hobson", "andrewcoughtrie", "mo-rickywong", "yaswant"], "sciTech Review": "svadams", "status": "Code Review", "title": "Take XIOS file frequency configuration from iodef.xml where possible"}, {"code Review": "james-bruten-mo", "content": {"body": "# Description\r\n\r\n## Summary\r\n\r\nSwitching out the hardcoded optimisation reviewers for the SimSysCodeReviewers team. Adding deduplication to the table construction as the new team will contain duplicates. Hardcoded removal of MGEX82 from team members as this is a SAM member rather than a reviewer. \r\n\r\nAlso moved test files into a directory to make it clearer what they are. \r\n\r\n## Changes\r\n\r\n_List the major changes made in this pull request._\r\n\r\n## Dependency\r\n\r\n_List dependent changes. Can use build-group logic here._\r\n\r\n## Impact\r\n\r\n_Discuss any potential impacts this feature may have on existing functionalities._\r\n\r\n## Issues addressed\r\n\r\nResolves\r\n\r\n_List issue(s) related to this PR._\r\n\r\n## Coordinated merge\r\n\r\n_Specify any coordinated merges here._\r\n\r\n\r\n## Checklist\r\n\r\n- [x] I have performed a self-review of my own changes\r\n", "number": 159, "repository": "MetOffice/SimSys_Scripts", "title": "Remove hardcoded review team", "type": "PullRequest", "url": "https://github.com/MetOffice/SimSys_Scripts/pull/159"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjh9IU", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/SimSys_Scripts", "reviewers": ["james-bruten-mo"], "status": "Done", "title": "Remove hardcoded review team"}, {"assignees": ["james-bruten-mo"], "code Review": "jennyhickson", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @jennyhickson \r\n\r\n\r\n\r\nAdd project tracking workflow\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid understanding and enhance the readability of the code\r\n- [ ] My changes generate no new warnings\r\n- [ ] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 117, "repository": "MetOffice/lfric_apps", "title": "Add project workflow", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/117"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjild0", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["jennyhickson"], "status": "Done", "title": "Add project workflow"}, {"assignees": ["james-bruten-mo"], "code Review": "jennyhickson", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @jennyhickson \r\n\r\n\r\n\r\nAdd project tracking workflow - waiting on growss PR before merging\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid understanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite\r\n using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel\r\n interface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [x] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [x] Documentation is complete and accurate\r\n- [x] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n", "number": 214, "repository": "MetOffice/lfric_core", "title": "add project workflow", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/214"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjingc", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["jennyhickson", "andrewcoughtrie", "yaswant"], "status": "Done", "title": "add project workflow"}, {"assignees": ["yaswant"], "code Review": "@james-bruten-mo", "content": {"body": "# Description\r\n\r\n## Summary\r\n\r\nBump superlinter\r\n\r\n## Changes\r\n\r\n- Upgrade SuperLinter action to v8.3.2 \r\n- Update Python environment matrix\r\n- Prefer ruff over Black\r\n\r\n## Dependency\r\n\r\n_List dependent changes. Can use build-group logic here._\r\n\r\n## Impact\r\n\r\n_Discuss any potential impacts this feature may have on existing functionalities._\r\n\r\n## Checklist\r\n\r\n- [x] I have performed a self-review of my own changes\r\n", "number": 161, "repository": "MetOffice/SimSys_Scripts", "title": "update superlinter", "type": "PullRequest", "url": "https://github.com/MetOffice/SimSys_Scripts/pull/161"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjj2vY", "labels": ["CI"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/SimSys_Scripts", "reviewers": ["james-bruten-mo", "james-bruten-mo"], "status": "Done", "title": "update superlinter"}, {"assignees": ["t00sa"], "code Review": "Pierre-siddall", "content": {"body": "The command line argument list passed to argparse is incorrect and can give rise to spurious errors in some cases. This corrects the problem by removing the first element (the command name itself) from the list of arguments passed to argparse.\r\n\r\nThis resolves issue #536", "number": 537, "repository": "MetOffice/fab", "title": "Fix a trivial CUI argument handling bug", "type": "PullRequest", "url": "https://github.com/MetOffice/fab/pull/537"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjlJJk", "repository": "https://github.com/MetOffice/fab", "reviewers": ["Pierre-siddall"], "status": "Done", "title": "Fix a trivial CUI argument handling bug"}, {"content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: \r\n\r\n\r\nThis change will consolidate all the nudging code improvements into a UM14.0 branch.\r\nIt will also update the GCOM version used by the UM to GCOM8.5\r\n\r\n\r\n\r\n\r\n\r\n\r\nfixes #20 \r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's style guidelines\r\n- [ ] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the UM rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 22, "repository": "MetOffice/um", "title": "Gm consolidate nudging", "type": "PullRequest", "url": "https://github.com/MetOffice/um/pull/22"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjlVRc", "repository": "https://github.com/MetOffice/um", "status": "SciTech Review", "title": "Gm consolidate nudging"}, {"assignees": ["james-bruten-mo"], "code Review": "ericaneininger", "content": {"body": "# Description\r\n\r\nWe've had a request to bump the timeout in this script\r\n", "number": 162, "repository": "MetOffice/SimSys_Scripts", "title": "bump timeout", "type": "PullRequest", "url": "https://github.com/MetOffice/SimSys_Scripts/pull/162"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjmHNM", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/SimSys_Scripts", "reviewers": ["ericaneininger"], "status": "Done", "title": "bump timeout"}, {"assignees": ["bblay-mo"], "content": {"body": "# PR Summary\r\nAdd Section 20 diagnostic _snow probability_, as described in https://github.com/MetOffice/Section20/issues/21.1\r\n\r\nTodo:\r\n - [ ] **Wait for Paul to make suites work with lfric apps vn3.0/GitHub**\r\n - [ ] Do we need the DOF loop?\r\n - [ ] Is the long name correct? What about a unit?\r\n - [ ] Rebase once #98, from which this was branched, has been merged.\r\n - Until then, this PR will also show the changes from #98.\r\n - We can see just the changes _ontop_ here (needs fork invite): https://github.com/bblay-mo/lfric_apps/compare/diags_geopot_thickness...bblay-mo:lfric_apps:diags_snow_prob?expand=1\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid understanding and enhance the readability of the code\r\n- [ ] My changes generate no new warnings\r\n- [ ] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 120, "repository": "MetOffice/lfric_apps", "title": "S20 Diags: snow prob", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/120"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjmOns", "labels": ["cla-signed"], "repository": "https://github.com/MetOffice/lfric_apps", "status": "In Progress", "title": "S20 Diags: snow prob"}, {"assignees": ["jennyhickson"], "code Review": "yaswant", "content": {"body": "Update the test file for workload.py with the latest project data as this contains a fuller set of reviews. \r\n\r\nAlso remove the body from each PR in the test data as this isn't needed, adds bloat and also can contain non-ascii characters which upsets the linter. ", "number": 163, "repository": "MetOffice/SimSys_Scripts", "title": "new test file", "type": "PullRequest", "url": "https://github.com/MetOffice/SimSys_Scripts/pull/163"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjm_lw", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/SimSys_Scripts", "reviewers": ["yaswant"], "status": "Done", "title": "new test file"}, {"assignees": ["james-bruten-mo"], "code Review": "jennyhickson", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @t00sa \r\nCode Reviewer: @jennyhickson \r\n\r\n\r\n\r\nDue to subtle rose reasons, the extract_source app doesn't show as failed if there was an error in the python script. This fixes this such that it does error correctly.\r\n\r\nWe're doing this as a hotfix to stable as it seems quite a few people are experiencing it.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\nI've tested that the task shows an error as expected if there was an error in the python script. I've not bothered running the rest of the test suite\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 122, "repository": "MetOffice/lfric_apps", "title": "raise error successfully from extract_source", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/122"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjpNyM", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["t00sa", "jennyhickson"], "sciTech Review": "t00sa", "status": "Done", "title": "raise error successfully from extract_source"}, {"assignees": ["tom-j-h"], "code Review": "TeranIvy", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @DrTVockerodtMO\r\nCode Reviewer: @TeranIvy \r\n\r\nAlign default configuration of `adjoint_tests` to that of `linear_model` (nwp-gal9). This includes both the canned test and the rose-stem tests.\r\n\r\n`linear_model` uses multigrid preconditioning in the solver, and taking advantage of this in the adjoint requires a minor code change in `science/adjoint/source/algorithm/solver/adj_semi_implicit_solver_alg_mod.x90`, and to test this, minor code changes in some of the test algorithms in `applications/adjoint_tests/source/algorithm/solver/`\r\n\r\n`linear_model` also reads linearisation states from file, whereas `adjoint_tests` currently sets them up analytically. Moving to reading from file requires some minor changes e.g., to iodef files, but also allows the removal of a lot of the analytical linearisation state setup code in some of the test algorithms.\r\n\r\nIn order to keep the alignment of `adjoint_tests` with `linear_model` simple, any necessary deviations are handled by optional configurations, so that the base configurations (`rose-app.conf` files) always remain identical.\r\n\r\nThis work has highlighted a minor bug which can also be dealt with by way of an optional configuration. I have opened #87 for this. Once it is dealt with the optional configuration will simply need to be removed.\r\n\r\nFor now, adding C224 tests to `adjoint_tests`, to match those in `linear_model`, is not being done, due to ongoing issues with running `adjoint_tests` in parallel (see https://code.metoffice.gov.uk/trac/lfric_apps/ticket/800).\r\n\r\n~~Finally, the code/patch changes from #71 (`science/adjoint/source/kernel/transport/mol/atl_poly1d_vert_w3_reconstruction_kernel_mod.F90` and `science/adjoint/patches/kernel/atl_poly1d_vert_adv_kernel_mod.patch`) are required for one of the configuration changes, _so they've been duplicated here but need not be reviewed again._ This makes #71 a blocker.~~ _Done!_\r\n\r\nAlso please note I branched from `main` rather than `stable` by mistake - apologies for this. I can make a new branch/PR if desired.\r\n\r\n- closes #84\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid understanding and enhance the readability of the code\r\n- [ ] My changes generate no new warnings\r\n- [ ] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n### trac.log\r\n\r\nVery long - see `~tom.hill/cylc-run/align_adjoint_tests_to_linear_model-developer-postSR1/trac.log`.\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n# Code Review\r\n\r\n- [x] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [x] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 123, "repository": "MetOffice/lfric_apps", "title": "Align `adjoint_tests` to `linear_model`", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/123"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjpdoY", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["DrTVockerodtMO", "DrTVockerodtMO", "TeranIvy", "TeranIvy", "TeranIvy"], "sciTech Review": "DrTVockerodtMO", "status": "Done", "title": "Align `adjoint_tests` to `linear_model`"}, {"content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @james-bruten-mo \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid understanding and enhance the readability of the code\r\n- [ ] My changes generate no new warnings\r\n- [ ] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 131, "repository": "MetOffice/lfric_apps", "title": "Hotfix to rose-stem suite", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/131"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjprHs", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["james-bruten-mo"], "status": "Done", "title": "Hotfix to rose-stem suite"}, {"assignees": ["tom-j-h"], "code Review": "stevemullerworth", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @mo-joshuacolclough \r\nCode Reviewer: @stevemullerworth \r\n\r\n**PLEASE NOTE** - this is a follow-on to #123. The branch was created from #123's branch in my fork, but I can't make a PR into that branch because then I would be stuck in my fork. So, to look at the actual changes relevant to this PR alone, look at the diff of this branch with #123's branch: https://github.com/tom-j-h/lfric_apps/compare/align_adjoint_tests_to_linear_model...tom-j-h:lfric_apps:jelf_adjoint_test_tolerance_nml\r\n\r\nAllows different test strictness when running different optional configurations. Necessary for follow-on PRs.\r\n\r\n- is blocked-by #123\r\n- blocks #156\r\n- closes #124\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [ ] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n`~tom.hill/cylc-run/jelf_adjoint_test_tolerance_nml-developer-3/run1/trac.log`\r\n\r\nNo failures (had to rerun some unrelated tasks, mostly build tasks, due to timeouts).\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 132, "repository": "MetOffice/lfric_apps", "title": "jelf adjoint test tolerance namelist variable", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/132"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjpu_0", "labels": ["macro", "cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["mo-joshuacolclough", "stevemullerworth"], "sciTech Review": "mo-joshuacolclough", "status": "Code Review", "title": "jelf adjoint test tolerance namelist variable"}, {"assignees": ["mcdalvi"], "code Review": "oakleybrunt", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @alanjhewitt \r\nCode Reviewer: @oakleybrunt \r\n\r\n\r\n\r\n\r\nArrays `true_latitude`, `true_longitude` and `weight_volc_vertdist` are being used without being allocated in LFRic copy of _ukca_volcanic_so2_ routine. This might have been a fallout of migrating the UM physics code.\r\nThis is causing CCE builds on ARCHER2 to fail, and warnings during the GNU compilation. \r\n\r\n_Note: the Volcanic_SO2 emission functionality is not yet fully linked up in LFRic_. Hence this PR will also add a check to ensure that the routine is not called.\r\n\r\n\r\nIssue: #81\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [ ] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n## Test Suite Results - lfric_apps - fix_i81_ukca_volc/run2\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [fix_i81_ukca_volc/run2](https://cylchub/services/cylc-review/cycles/mohit.dalvi/?suite=fix_i81_ukca_volc%2Frun2) |\r\n| Suite User | mohit.dalvi |\r\n| Workflow Start | 2026-01-19T09:59:37 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [mcdalvi/lfric_apps@fix_i81_ukca_volc](https://github.com/mcdalvi/lfric_apps/tree/fix_i81_ukca_volc) | False |\r\n| lfric_core | [MetOffice/lfric_core@5d4d72f](https://github.com/MetOffice/lfric_core/tree/5d4d72f) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 1106\r\n\r\n## Testing information from ARCHER2 is noted in the [issue:81 Summary](https://github.com/MetOffice/lfric_apps/issues/81#issue-3772407223)\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [x] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [x] Documentation is complete and accurate\r\n- [x] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n", "number": 133, "repository": "MetOffice/lfric_apps", "title": "#81: Fix unallocated arrays in `ukca_volcanic_so2`", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/133"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjpvvY", "labels": ["bug", "cla-signed"], "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["oakleybrunt"], "sciTech Review": "alanjhewitt", "status": "Approved", "title": "#81: Fix unallocated arrays in `ukca_volcanic_so2`"}, {"assignees": ["mo-lucy-gordon"], "code Review": "Pierre-siddall", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @james-bruten-mo \r\nCode Reviewer: @Pierre-siddall \r\n\r\nThis adds the fortitude linter to the test suite and enables one rule to run to demonstrate basic functionality. Subsequent branches will add more rules and testing. \r\n\r\nAssociated with https://github.com/MetOffice/lfric_apps/pull/150 \r\n\r\nThis addition will mean Fortitude will run when the \"scripts\", \"developer\", \"all\" or \"fortitude_linter\" group itself is run with the Cylc test suite.\r\n\r\nThe rule added here can be referenced Fortitude documentation website here: https://fortitude.readthedocs.io/en/stable/rules/use-all/\r\n\r\n**For reference, these are some example outputs and errors from when fortitude runs:**\r\n\r\n- **No errors, run with group=fortitude_linter**\r\nhttps://cylchub/services/cylc-review/cycles/lucy.gordon?&suite=lcore_add_gh_no_errors2%2Frun3\r\n**...and with scripts:**\r\nhttps://cylchub/services/cylc-review/taskjobs/lucy.gordon?&suite=lcore_add_gh_no_errors2%2Frun8&cycles=1&task_status=expired&task_status=succeeded\r\n\r\n- **Lint errors in one repo, run with group=fortitude_linter:**\r\nhttps://cylchub/services/cylc-review/view/lucy.gordon?&suite=lcore_add_gh_no_errors2%2Frun5&no_fuzzy_time=0&path=log/job/1/fortitude_linter/01/job.err\r\n\r\n- **Non-lint errors in most repos, and no errors in one repo, run with group=fortitude_linter:**\r\nhttps://cylchub/services/cylc-review/view/lucy.gordon?&suite=lcore_add_gh_no_errors2%2Frun6&no_fuzzy_time=0&path=log/job/1/fortitude_linter/01/job.err\r\nhttps://cylchub/services/cylc-review/view/lucy.gordon?&suite=lcore_add_gh_no_errors2%2Frun6&no_fuzzy_time=0&path=log/job/1/fortitude_linter/01/job.out\r\n\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite\r\n using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (e.g. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (e.g. system\r\n tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource\r\n and have been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n# Test Suite Results - lfric_core - lcore_add_gh_no_errors2/run7\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | lcore_add_gh_no_errors2/run7 |\r\n| Suite User | lucy.gordon |\r\n| Workflow Start | 2026-01-14T11:46:12 |\r\n| Groups Run | all |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| lfric_core | [mo-lucy-gordon/lfric_core@adding_fortitude](https://github.com/mo-lucy-gordon/lfric_core/tree/adding_fortitude) | False |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n
\r\n:white_check_mark: succeeded tasks - 373\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel\r\n interface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 217, "repository": "MetOffice/lfric_core", "title": "Adding fortitude", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/217"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjqGao", "labels": ["cla-signed"], "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["mo-rickywong", "james-bruten-mo"], "sciTech Review": "james-bruten-mo", "status": "Changes Requested", "title": "Adding fortitude"}, {"assignees": ["james-bruten-mo"], "content": {"body": "Minor changes to review pages:\r\n\r\n* add instructions on hotfix process\r\n* add option of `gh pr checkout` to how to commit", "number": 555, "repository": "MetOffice/simulation-systems", "title": "hotfix release notes", "type": "PullRequest", "url": "https://github.com/MetOffice/simulation-systems/pull/555"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjqllE", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/simulation-systems", "reviewers": ["jennyhickson"], "status": "Done", "title": "hotfix release notes"}, {"assignees": ["mo-marqh"], "code Review": "mo-lottieturner", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @mo-marqh\r\nCode Reviewer: @mo-lottieturner \r\n\r\n\r\n\r\n\r\n- MetOffice/lfric_core#215\r\n\r\nThis PR fixes a few issues in our code that are fine with XIOS2 but fail with XIOS3, namely:\r\n- incorrect formatting of the `buffer_size_factor` config parameter\r\n- fields in `read` mode files which do not have `read_access=.true.`\r\n\r\nThis PR fixes them and the fixes are backwards compatible with XIOS 2.\r\nWith the additional changes from #204, the lfric-xios technical tests are able to be run with both XIOS2 and XIOS3.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite\r\n using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (e.g. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (e.g. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n# Test Suite Results - lfric_core - lfric_core-215-xios3-fixes/run2\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [lfric_core-215-xios3-fixes/run2](https://cylchub/services/cylc-review/cycles/edward.hone/?suite=lfric_core-215-xios3-fixes%2Frun2) |\r\n| Suite User | edward.hone |\r\n| Workflow Start | 2026-01-20T11:49:52 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| lfric_core | [EdHone/lfric_core@215-xios3-fixes](https://github.com/EdHone/lfric_core/tree/215-xios3-fixes) | False |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 372\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel\r\n interface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [x] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [x] Documentation is complete and accurate\r\n- [x] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n", "number": 218, "repository": "MetOffice/lfric_core", "title": "Small fixes to better enable running with XIOS 3", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/218"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjqqfo", "labels": ["cla-modified"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["mo-marqh", "mo-lottieturner", "MatthewHambley", "stevemullerworth", "mike-hobson", "andrewcoughtrie", "mo-rickywong", "yaswant"], "sciTech Review": "mo-marqh", "status": "Done", "title": "Small fixes to better enable running with XIOS 3"}, {"assignees": ["mo-andymalcolm"], "code Review": "r-sharp", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @mo-saracusworth \r\nCode Reviewer: @r-sharp \r\n\r\n\r\n\r\n\r\nThis change includes OMP optimisations required by the climate diagnostics being used for CMIP.\r\nAs OMP changes no code owner approval needed for changes. Just HPC opt via Sara.\r\n\r\n\r\n- linked MetOffice/um#23\r\n\r\n\r\ncloses #23\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [y] I have performed a self-review of my own code\r\n- [y] My code follows the project's style guidelines\r\n- [y] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [y] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [y] I have tested this change locally, using the UM rose-stem suite\r\n- [n/a] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [n/a] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\nchanges tested in workflow u-dv620. large improvement in runtimes seen.\r\n\r\n### trac.log\r\n\r\n\r\n\r\n# Test Suite Results - um - climate_diagnostics/run3\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [climate_diagnostics/run3](https://cylchub/services/cylc-review/cycles/andy.malcolm/?suite=climate_diagnostics%2Frun3) |\r\n| Suite User | andy.malcolm |\r\n| Workflow Start | 2026-01-16T10:58:52 |\r\n| Groups Run | developer', 'rigorous_compile |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| mule | [MetOffice/mule@2025.10.1](https://github.com/MetOffice/mule/tree/2025.10.1) | True |\r\n| shumlib | [MetOffice/shumlib@2025.10.1](https://github.com/MetOffice/shumlib/tree/2025.10.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n| um | [mo-andymalcolm/um@climate_diags_opt_omp](https://github.com/mo-andymalcolm/um/tree/climate_diags_opt_omp) | False |\r\n| um_aux | [MetOffice/um_aux@2025.12.1](https://github.com/MetOffice/um_aux/tree/2025.12.1) | True |\r\n| um_meta | [MetOffice/um_meta@2025.12.1](https://github.com/MetOffice/um_meta/tree/2025.12.1) | True |\r\n\r\n## Approvals\r\n### Code Owners\r\n| Section | Owner | Deputy | State |\r\n| :--- | :--- | :--- | :--- |\r\n| climate_diagnostics | umsysteam@metoffice.gov.uk | -- | Pending |\r\n| tracer_advection | mohamedzerroukat | thomasallen | Pending |\r\n### Config Owners\r\nNo UM Config Owners Required\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 886\r\n\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | climate_diagnostics/run1 |\r\n| Suite User | andy.malcolm |\r\n| Workflow Start | 2026-01-14T16:03:49 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| mule | [MetOffice/mule@2025.10.1](https://github.com/MetOffice/mule/tree/2025.10.1) | True |\r\n| shumlib | [MetOffice/shumlib@2025.10.1](https://github.com/MetOffice/shumlib/tree/2025.10.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n| um | [mo-andymalcolm/um@climate_diags_opt_omp](https://github.com/mo-andymalcolm/um/tree/climate_diags_opt_omp) | False |\r\n| um_aux | [MetOffice/um_aux@2025.12.1](https://github.com/MetOffice/um_aux/tree/2025.12.1) | True |\r\n| um_meta | [MetOffice/um_meta@2025.12.1](https://github.com/MetOffice/um_meta/tree/2025.12.1) | True |\r\n\r\n## Approvals\r\n### Code Owners\r\n| Section | Owner | Deputy | State |\r\n| :--- | :--- | :--- | :--- |\r\n| climate_diagnostics | umsysteam@metoffice.gov.uk | -- | Pending |\r\n| tracer_advection | mohamedzerroukat | thomasallen | Pending |\r\n### Config Owners\r\nNo UM Config Owners Required\r\n## Task Information\r\n
\r\n:white_check_mark: succeeded tasks - 880\r\n\r\n## Security Considerations\r\n\r\n- [y] I have reviewed my changes for potential security issues\r\n- [n/a] Sensitive data is properly handled (if applicable)\r\n- [n/a] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [y] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [n] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [n/a] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 24, "repository": "MetOffice/um", "title": "Climate diags opt omp", "type": "PullRequest", "url": "https://github.com/MetOffice/um/pull/24"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjqsQ8", "repository": "https://github.com/MetOffice/um", "status": "SciTech Review", "title": "Climate diags opt omp"}, {"assignees": ["mo-jmanners"], "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer:\r\nCode Reviewer: @james-bruten-mo \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\ncloses #9\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- Trivial change that does not affect UM or LFRic builds.\r\n\r\n- [ ] If shared files have been modified, I have run the UM and LFRic Apps rose\r\n stem suites\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n- make_tar script runs successfully\r\n- changes to userguide build with latex\r\n\r\n### trac.log\r\n\r\n\r\n- NA\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 12, "repository": "MetOffice/socrates", "title": "Tidy up references to FCM", "type": "PullRequest", "url": "https://github.com/MetOffice/socrates/pull/12"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjq2XY", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/socrates", "reviewers": ["james-bruten-mo"], "status": "Done", "title": "Tidy up references to FCM"}, {"assignees": ["yaswant"], "code Review": "@james-bruten-mo", "content": {"body": "# Description\n\n## Summary\n\nRefactor `run_command()` and add logging\n\n## Dependency\n\nNone\n## Checklist\n\n- [x] I have performed a self-review of my own changes\n", "number": 164, "repository": "MetOffice/SimSys_Scripts", "title": "Refactor run_command error handling", "type": "PullRequest", "url": "https://github.com/MetOffice/SimSys_Scripts/pull/164"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjq5SY", "labels": ["enhancement"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/SimSys_Scripts", "reviewers": ["james-bruten-mo"], "status": "Done", "title": "Refactor run_command error handling"}, {"assignees": ["james-bruten-mo"], "content": {"body": "# PR Summary\r\n\r\nSci Tech Reviewer: \r\nCode Reviewer: \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's style guidelines\r\n- [ ] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\n### trac.log and other testing evidence\r\n\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] This change does not introduce security vulnerabilities\r\n- [ ] I have reviewed the code for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## Contributor License Agreement (CLA)\r\n\r\n- [ ] **Required** - I confirm that I have read and agree to the project's\r\n [Contributor License Agreement](todo-enter-link-to-cla)\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](todo-enter-link-to-policy-page) (including\r\n attribution labels)\r\n\r\n## Documentation\r\n\r\nDocumentation includes a broad range of things, including but not limited to, \r\nuser guides, code comments, API documentation, and README.md.\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n# Sci-Tech Review\r\n\r\n\r\n\r\n- [ ] I understand the scientific or technical area of the code being modified\r\n- [ ] The code changes correspond to the PR description of the changes\r\n- [ ] Sufficient documentation has been included\r\n- [ ] Sufficient testing has been performed\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues are properly linked and addressed\r\n- [ ] CLA compliance is confirmed\r\n- [ ] Code quality standards are met\r\n- [ ] Tests are adequate and passing\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 114, "repository": "MetOffice/git_playground", "title": "Test cla from stable", "type": "PullRequest", "url": "https://github.com/MetOffice/git_playground/pull/114"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjtF5s", "labels": ["contributor"], "repository": "https://github.com/MetOffice/git_playground", "status": "In Progress", "title": "Test cla from stable"}, {"assignees": ["james-bruten-mo"], "content": {"body": "# PR Summary\r\n\r\nSci Tech Reviewer: \r\nCode Reviewer: \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's style guidelines\r\n- [ ] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\n### trac.log and other testing evidence\r\n\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] This change does not introduce security vulnerabilities\r\n- [ ] I have reviewed the code for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## Contributor License Agreement (CLA)\r\n\r\n- [ ] **Required** - I confirm that I have read and agree to the project's\r\n [Contributor License Agreement](todo-enter-link-to-cla)\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](todo-enter-link-to-policy-page) (including\r\n attribution labels)\r\n\r\n## Documentation\r\n\r\nDocumentation includes a broad range of things, including but not limited to, \r\nuser guides, code comments, API documentation, and README.md.\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n# Sci-Tech Review\r\n\r\n\r\n\r\n- [ ] I understand the scientific or technical area of the code being modified\r\n- [ ] The code changes correspond to the PR description of the changes\r\n- [ ] Sufficient documentation has been included\r\n- [ ] Sufficient testing has been performed\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues are properly linked and addressed\r\n- [ ] CLA compliance is confirmed\r\n- [ ] Code quality standards are met\r\n- [ ] Tests are adequate and passing\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 115, "repository": "MetOffice/git_playground", "title": "Test from main", "type": "PullRequest", "url": "https://github.com/MetOffice/git_playground/pull/115"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjtIAc", "labels": ["contributor", "cla-modified"], "repository": "https://github.com/MetOffice/git_playground", "status": "In Progress", "title": "Test from main"}, {"code Review": "mike-hobson", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @DanCopsey \r\nCode Reviewer: @mike-hobson \r\n\r\n\r\n\r\n\r\nThis pull request enables sea-ice ancillaries to be read on categories. This is required for surf ancillaries in coupled NWP where we require information about sea-ice at lake points that are not resolved by NEMO. The new functionality is only used for surf ancils at the moment. Adding it for other types of sea-ice ancils would just require a change to xml files but there is no requirement for this at the moment.\r\n\r\nTo enable the change, I have also had to make some changes to the logic of reading SST and sea-ice ancils. In particular, coupled climate model runs will now need the seaice_source variable set to \"start_dump\" instead of \"ancil\" as was used previously. This has no effect on results. I can't see a way to implement an upgrade macro for this change as the required value is different for coupled vs atmosphere only models. Given my team is likely to be the only one upgrading coupled workflows from vn3.0 to vn3.1 I think we will be able to deal with this manually.\r\n\r\nThe axes of one input file used by two tests have been updated as part of this change.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [ ] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\nThis has been tested in NWP case study workflows at multiple LFRic versions. It has also been tested in AMIP and coupled climate workflows to ensure that it doesn't change results.\r\nThe metadata validation task fails at the moment because I have edited metadata at HEAD but the coupled task still points to vn3.0 metadata. \r\n\r\n### trac.log\r\n# Test Suite Results - lfric_apps - git_ostia_ancils/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | git_ostia_ancils/run1 |\r\n| Suite User | tim.graham |\r\n| Workflow Start | 2026-01-14T12:08:07 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [timgraham-Met/lfric_apps@118_ostia_ice_ancils](https://github.com/timgraham-Met/lfric_apps/tree/118_ostia_ice_ancils) | False |\r\n| lfric_core | [MetOffice/lfric_core@5d4d72f](https://github.com/MetOffice/lfric_core/tree/5d4d72f) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n
\r\n:x: failed tasks - 1\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| validate_rose_meta | failed |\r\n
\r\n
\r\n:white_check_mark: succeeded tasks - 1104\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| build_adjoint_tests_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_azspice_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_ex1a_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_adjoint_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_coupled_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gravity_wave_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_gravity_wave_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_gravity_wave_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_gravity_wave_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_gravity_wave_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gungho_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_gungho_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| build_gungho_model_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_model_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| build_gungho_model_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_gungho_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_tests_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_tests_integration_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_jules_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric2lfric_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric2lfric_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_full-debug-32bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_production-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_fast-debug-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_full-debug-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_production-32bit | succeeded |\r\n| build_lfric_coupled_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_linear_model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_model_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_linear_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_mesh_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_name_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_ngarch_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_ngarch_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_ngarch_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_ngarch_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_physics_schemes_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_physics_schemes_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_shallow_water_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_shallow_water_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_shallow_water_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_shallow_water_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_solver_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_solver_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_solver_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_transport_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_transport_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_transport_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| check_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200_realorog-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200_realorog-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-nrun-v-crun | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-nrun-v-crun | succeeded |\r\n| check_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_runge-kutta-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_runge-kutta-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_semi-implicit-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_semi-implicit-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_nwp_gal9-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_nwp_gal9-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jules_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-seuk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_chem_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_chem_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9_debug-C12_azspice_gnu_full-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_debug-C12_ex1a_cce_full-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_noukca_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_noukca_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_zero-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_zero-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| config_dump_checker | succeeded |\r\n| export-source | succeeded |\r\n| export-source_azspice | succeeded |\r\n| export-source_ex1a | succeeded |\r\n| export-weights_azspice | succeeded |\r\n| export-weights_ex1a | succeeded |\r\n| fcm_make2_drivers | succeeded |\r\n| fcm_make2_lfric_coupled_ocean_ex1a_cce_fast-debug-64bit | succeeded |\r\n| fcm_make_drivers | succeeded |\r\n| fcm_make_lfric_coupled_ocean_ex1a_cce_fast-debug-64bit | succeeded |\r\n| fcm_make_lfric_coupled_river_ex1a_cce_fast-debug-64bit | succeeded |\r\n| generate_weights_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet_lbc_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-falklands_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_azspice_weightgen_script | succeeded |\r\n| global_variables_checker | succeeded |\r\n| housekeep_ex1a | succeeded |\r\n| local_build_test | succeeded |\r\n| macro_chains_checker | succeeded |\r\n| perftools-export_gungho_model_baroclinic-profile_perf-C24_MG_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| pert_compare_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| pert_compare_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_cylinder_xz-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_cylinder_xz-BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| python_unit_tests | succeeded |\r\n| remote-init_azspice | succeeded |\r\n| remote-init_ex1a | succeeded |\r\n| rose-stem_lint_checker | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_adjoint_tests_canned_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_canned_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_azspice_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_ex1a_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_varying_ls-C12_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_adjoint_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_coupled_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gravity_wave_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_gravity_wave_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gungho_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_gungho_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit_pert_off | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit_pert_off | succeeded |\r\n| run_gungho_model_baroclinic-profile_perf-C24_MG_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_gungho_model_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200_realorog-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200_realorog-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_no-timestep-method-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_no-timestep-method-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_runge-kutta-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_runge-kutta-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_semi-implicit-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_semi-implicit-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_gungho_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_tests_integration_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_nwp_gal9-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_nwp_gal9-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jules_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jules_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-seuk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric_atm_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_canned_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_chem_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_chem_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C12_azspice_gnu_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C12_ex1a_cce_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_linear_model_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_zero-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_zero-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_linear_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_mesh_BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP2x2-50000x50000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1500x1500_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_C16_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_rot_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_rot_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_falklands_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_falklands_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_seuk_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_seuk_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_cylinder_xz-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_cylinder_xz-BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_name_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_ngarch_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_physics_schemes_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_physics_schemes_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_shallow_water_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_shallow_water_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_transport_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| site_validator | succeeded |\r\n| style_checker | succeeded |\r\n| test_launch-exe | succeeded |\r\n
\r\n
\r\n:hourglass: waiting tasks - 1\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| housekeep_azspice | waiting |\r\n
\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 137, "repository": "MetOffice/lfric_apps", "title": "118 ostia ice ancils", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/137"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjtONI", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["DanCopsey"], "status": "SciTech Review", "title": "118 ostia ice ancils"}, {"assignees": ["thomasmelvin"], "code Review": "christophermaynard", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @tommbendall \r\nCode Reviewer: @christophermaynard \r\n\r\n\r\n\r\nThis is a port of the previous SRS ticket (https://code.metoffice.gov.uk/trac/lfric_apps/ticket/1070) & its linked ticket https://code.metoffice.gov.uk/trac/lfric/ticket/4699 Both these tickets have already been science and code reviewed on the SRS and will go to the same reviewers here to check for any further issues.\r\n\r\nIn detail, the aim of this ticket is to modify the existing partitioning strategy so that it can partition multiple panels (either 3 sets of 2 or 2 sets of 3) into uniform rectangular domains. This will mean that the number of mpi ranks needs to only have a factor of 2 or 3 instead of 6 as a base requirement.\r\n\r\nUsing this option means that code that assumes all owned cells are on the same panel (we think only the extended mesh in the transport code) will not give the correct results here.\r\n\r\nAs part of this change I have also fixed the plotting script for the baroclinic wave on azspice where the figures were not coming out correct\r\n\r\n\r\n- linked MetOffice/lfric_core#220\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [X] Comments have been included that aid understanding and enhance the readability of the code\r\n- [X] My changes generate no new warnings\r\n- [ ] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\nThis change has been well tested & used in the Dec2025 KPI report for the global lfric model and is required to run the model on the target ~100 nodes at C896 resolution\r\n\r\n### trac.log\r\n\r\n\r\n\r\n# Test Suite Results - lfric_apps - decompose_across_panels/run11\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [decompose_across_panels/run11](https://cylchub/services/cylc-review/cycles/thomas.melvin/?suite=decompose_across_panels%2Frun11) |\r\n| Suite User | thomas.melvin |\r\n| Workflow Start | 2026-01-19T15:59:16 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [thomasmelvin/lfric_apps@decompose_across_panels](https://github.com/thomasmelvin/lfric_apps/tree/decompose_across_panels) | False |\r\n| lfric_core | [thomasmelvin/lfric_core@decompose_across_panels](https://github.com/thomasmelvin/lfric_core/tree/decompose_across_panels) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 1115\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [X] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 138, "repository": "MetOffice/lfric_apps", "title": "Decompose across panels", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/138"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjtTzI", "labels": ["KGO", "cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["christophermaynard", "tommbendall"], "sciTech Review": "tommbendall", "status": "Code Review", "title": "Decompose across panels"}, {"assignees": ["thomasmelvin"], "code Review": "christophermaynard", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @tommbendall \r\nCode Reviewer: @christophermaynard \r\n\r\n\r\n\r\n\r\n\r\nThis is a port of the previous SRS ticket https://code.metoffice.gov.uk/trac/lfric/ticket/4699 & its related linked ticket https://code.metoffice.gov.uk/trac/lfric/ticket/4699 Both these tickets have already been science and code reviewed on the SRS and will go to the same reviewers here to check for any further issues.\r\n\r\nIn detail, the aim of this ticket is to modify the existing partitioning strategy so that it can partition multiple panels (either 3 sets of 2 or 2 sets of 3) into uniform rectangular domains. This will mean that the number of mpi ranks needs to only have a factor of 2 or 3 instead of 6 as a base requirement.\r\n\r\nUsing this option means that code that assumes all owned cells are on the same panel (we think only the extended mesh in the transport code) will not give the correct results here.\r\n\r\n- linked MetOffice/lfric_apps#138\r\n- fixes [(https://github.com/MetOffice/lfric_apps/issues/88)] \r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [X] I have performed a self-review of my own code\r\n- [X] My code follows the project's\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [X] Comments have been included that aid understanding and enhance the\r\n readability of the code\r\n- [X] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [X] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [X] If required (e.g. API changes) I have also run the LFRic Apps test suite\r\n using this branch\r\n- [X] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (e.g. kgo changes)\r\n- [X] I have added tests to cover new functionality as appropriate (e.g. system\r\n tests, unit tests, etc.)\r\n- [X] Any new tests have been assigned an appropriate amount of compute resource\r\n and have been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n# Test Suite Results - lfric_core - core_decompose_across_panels/run5\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [core_decompose_across_panels/run5](https://cylchub/services/cylc-review/cycles/thomas.melvin/?suite=core_decompose_across_panels%2Frun5) |\r\n| Suite User | thomas.melvin |\r\n| Workflow Start | 2026-01-19T13:54:16 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| lfric_core | [thomasmelvin/lfric_core@decompose_across_panels](https://github.com/thomasmelvin/lfric_core/tree/decompose_across_panels) | False |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 384\r\n\r\n## Security Considerations\r\n\r\n- [X] I have reviewed my changes for potential security issues\r\n- [] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [X] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [X] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel\r\n interface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 220, "repository": "MetOffice/lfric_core", "title": "Decompose across panels", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/220"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjtbTI", "labels": ["Linked Apps", "cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["mo-rickywong", "mike-hobson", "christophermaynard", "tommbendall"], "sciTech Review": "tommbendall", "status": "Code Review", "title": "Decompose across panels"}, {"assignees": ["caroduro"], "code Review": "Pierre-siddall", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @Pierre-siddall \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n- [x] Comments have been included that aid understanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n- [ ] If editing `rose-meta/jules-shared` then have you supplied a linked UM PR?\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the JULES rose-stem suite\r\n- [ ] If shared files have been modified, I have run the UM and LFRic Apps rose\r\n stem suites\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## Approvals\r\n\r\nPlease request all relevant approvals. See the CodeOwners.txt file for section\r\nowners.\r\n\r\n### Technical\r\n\r\n- [ ] JULES Code Owner\r\n- [ ] OpenMP\r\n- [ ] River Routing\r\n- [ ] Rose Stem\r\n- [ ] Rose Metadata\r\n- [ ] Upgrade Macros\r\n\r\n### Scientific\r\n\r\n- [ ] Surface\r\n- [ ] Hydrology\r\n- [ ] Vegetation\r\n- [ ] Veg3 RED Demography\r\n- [ ] Biogechemistry\r\n- [ ] Biogenic fluxes\r\n- [ ] Fire\r\n- [ ] Lakes\r\n- [ ] Evaluation\r\n- [ ] Imogen\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 29, "repository": "MetOffice/jules", "title": "Bug fix for a correct calculation of Newton-Raphson [issue 28]", "type": "PullRequest", "url": "https://github.com/MetOffice/jules/pull/29"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjtplI", "labels": ["cla-signed"], "repository": "https://github.com/MetOffice/jules", "reviewers": [], "status": "SciTech Review", "title": "Bug fix for a correct calculation of Newton-Raphson [issue 28]"}, {"assignees": ["thomasmelvin"], "code Review": "mo-lucy-gordon", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @jameskent-metoffice \r\nCode Reviewer: @mo-lucy-gordon \r\n\r\n\r\n\r\n\r\n\r\nThis change refactors the computation of the damping layer kernel to improve the efficiency of the code. As the computation order is reordered this results in small changes to kgos for all tests that use the damping layer.\r\n\r\nThe performance improvement is gained principally from lifting the expensive subroutine calls in the kernel outside of the dof loop (since they only depend upon the quadrature loop) and hence these functions are call much less often\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [X] I have performed a self-review of my own code\r\n- [X] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [X] Comments have been included that aid understanding and enhance the readability of the code\r\n- [X] My changes generate no new warnings\r\n- [X] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [X] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [X] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n# Test Suite Results - lfric_apps - refactor_dl_matrix/run3\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | refactor_dl_matrix/run3 |\r\n| Suite User | thomas.melvin |\r\n| Workflow Start | 2026-01-15T11:39:10 |\r\n| Groups Run | all |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [thomasmelvin/lfric_apps@refactor_dl_matrix](https://github.com/thomasmelvin/lfric_apps/tree/refactor_dl_matrix) | False |\r\n| lfric_core | [MetOffice/lfric_core@2025.12.1](https://github.com/MetOffice/lfric_core/tree/2025.12.1) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n
\r\n:x: failed tasks - 84\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| check_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | failed |\r\n| check_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | failed |\r\n| check_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | failed |\r\n| check_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | failed |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_azspice_gnu_fast-debug-64bit | failed |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_ex1a_cce_fast-debug-64bit | failed |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_op_azspice_gnu_fast-debug-64bit | failed |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_op_ex1a_cce_fast-debug-64bit | failed |\r\n| check_lfric_atm_aquaplanet-C12_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_aquaplanet-C12_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_camembert_case3_gj1214b-C12_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_camembert_case3_gj1214b-C12_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_clim_gal9_1T-C12_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_clim_gal9_1T-C48_MG_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_clim_gal9_2T-C12_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_clim_gal9_2T-C48_MG_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_clim_gal9_4T-C48_MG_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_clim_gal9_chem-C12_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_clim_gal9_chem-C12_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_clim_gal9_chem_1T-C12_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_clim_gal9_chem_2T-C12_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_comp_tran_ref_3d_l120-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_hd209458b-C24_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_hd209458b-C24_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_casim-C12_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_casim-C12_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_coma9-C12_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_coma9-C12_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_comorph_dev-C12_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_comorph_dev-C12_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_comorph_tb-C12_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | failed |\r\n| check_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | failed |\r\n| check_lfric_atm_nwp_gal9-C48_MG_azspice_gnu_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9-C48_MG_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9-pert-C12_azspice_gnu_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9-pert-C12_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_coarse_aero-C48_MG_azspice_gnu_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_coarse_aero-C48_MG_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_coarse_aero_threaded-C48_MG_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_coarse_aero_threaded-C48_MG_ex1a_gnu_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_da-C12_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_gal9_da-C12_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_gal9_debug-C12_azspice_gnu_full-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_debug-C12_ex1a_cce_full-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_debug-C48_MG_azspice_gnu_full-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_debug-C48_MG_ex1a_cce_full-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_eda-C12_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_gal9_eda-C12_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_gal9_eda_jada-C12_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_gal9_eda_jada-C12_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_gal9_mol-C12_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_gal9_mol-C12_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_gal9_noukca_1T-C12_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_noukca_1T-C48_MG_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_noukca_2T-C12_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_noukca_2T-C48_MG_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_noukca_2T-C48_MG_ex1a_cce_full-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_noukca_4T-C48_MG_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | failed |\r\n| check_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_thai_ben1-C48_MG_azspice_gnu_fast-debug-32bit | failed |\r\n| check_lfric_atm_thai_ben1-C48_MG_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | failed |\r\n
\r\n
\r\n:white_check_mark: succeeded tasks - 1371\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| build_adjoint_tests_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_azspice_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_ex1a_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_adjoint_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_coupled_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gravity_wave_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_gravity_wave_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_gravity_wave_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_gravity_wave_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_gravity_wave_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gungho_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_gungho_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| build_gungho_model_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_model_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| build_gungho_model_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_gungho_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_tests_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_tests_integration_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_jules_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric2lfric_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric2lfric_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_full-debug-32bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_production-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_fast-debug-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_full-debug-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_production-32bit | succeeded |\r\n| build_lfric_atm_ex1a_gnu_fast-debug-32bit | succeeded |\r\n| build_lfric_coupled_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_linear_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_linear_model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_model_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_linear_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_mesh_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_name_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_ngarch_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_ngarch_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_ngarch_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_ngarch_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_physics_schemes_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_physics_schemes_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_shallow_water_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_shallow_water_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_shallow_water_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_shallow_water_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_socrates_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_socrates_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_solver_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_solver_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_solver_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_transport_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_transport_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_transport_ex1a_cce_production-64bit | succeeded |\r\n| build_transport_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| check_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200_realorog-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200_realorog-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-nrun-v-crun | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-nrun-v-crun | succeeded |\r\n| check_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_runge-kutta-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_runge-kutta-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_semi-implicit-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_semi-implicit-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_nwp_gal9-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_nwp_gal9-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jules_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-seuk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-uk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-uk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-ukv_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-ukv_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_zero-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_zero-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| config_dump_checker | succeeded |\r\n| export-source | succeeded |\r\n| export-source_azspice | succeeded |\r\n| export-source_ex1a | succeeded |\r\n| export-weights_azspice | succeeded |\r\n| export-weights_ex1a | succeeded |\r\n| fcm_make2_drivers | succeeded |\r\n| fcm_make2_lfric_coupled_ocean_ex1a_cce_fast-debug-64bit | succeeded |\r\n| fcm_make_drivers | succeeded |\r\n| fcm_make_lfric_coupled_ocean_ex1a_cce_fast-debug-64bit | succeeded |\r\n| fcm_make_lfric_coupled_river_ex1a_cce_fast-debug-64bit | succeeded |\r\n| generate_weights_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet_lbc_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-falklands_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-var_seuk_lam_azspice_weightgen_script | succeeded |\r\n| global_variables_checker | succeeded |\r\n| kgo_groups_checker | succeeded |\r\n| local_build_test | succeeded |\r\n| macro_chains_checker | succeeded |\r\n| memory_plot_ex_lfric_atm_nwp_gal9-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| perftools-export_gungho_model_baroclinic-profile_perf-C24_MG_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| pert_compare_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| pert_compare_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| pert_compare_lfric_atm_nwp_gal9-pert-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| pert_compare_lfric_atm_nwp_gal9-pert-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_agnesi_nhyd_cart-BiP360x8-400x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C192_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C96_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bell_3d_cart-BiP300x200-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bryan_fritsch-moist-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_earth-like-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_grabowski-clark-BiP200x10-18x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_held-suarez-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_moist_baroclinic_orog-C48_MG_ex1a_gnu_fast-debug-64bit-crun3 | succeeded |\r\n| plot_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-smag-l300-BiP200x8-5x5_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C96_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar3d_cart-BiP200x200-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_25m-BiP2048x8-25x25_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_50m-BiP1024x8-50x50_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_warm3dbubble-BiP100x100-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_lfric_atm_aquaplanet-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_aquaplanet-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_camembert_case3_gj1214b-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_camembert_case3_gj1214b-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9_chem-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9_chem-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_casim-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_casim-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_coma9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_coma9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_comorph_dev-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_comorph_dev-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_comorph_tb-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C48_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_nwp_gal9-pert-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_nwp_gal9-pert-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_nwp_gal9_coarse_aero-C48_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_nwp_gal9_coarse_aero-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_nwp_gal9_da-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9_da-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9_eda-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9_eda-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9_eda_jada-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9_eda_jada-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9_mol-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9_mol-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_thai_ben1-C48_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_thai_ben1-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_cylinder_xz-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_cylinder_xz-BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C96_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi_ffsl-C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi_ffsl-C96_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi_koren-C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi_koren-C96_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi_mono-C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi_mono-C96_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_vortex_plane-BiP64x64-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_vortex_plane-BiP64x64-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_vortex_plane_vi-BiP64x64-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_vortex_plane_vi-BiP64x64-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_curl_free_reversible_xz_ffsl_bigcfl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_curl_free_reversible_xz_ffsl_bigcfl-BiP100x10-20x20_ex1a_cce_production-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl_bigcfl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl_bigcfl-BiP100x10-20x20_ex1a_cce_production-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C96_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C96_ex1a_cce_production-64bit | succeeded |\r\n| plot_transport_deformation_2d_ffsl_bigcfl-C96_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_ffsl_bigcfl-C96_ex1a_cce_production-64bit | succeeded |\r\n| plot_transport_divergent_2d_cylinder_ffsl_bigcfl-C96_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_divergent_2d_cylinder_ffsl_bigcfl-C96_ex1a_cce_production-64bit | succeeded |\r\n| plot_transport_eternal_fountain_xz_ffsl_bigcfl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_eternal_fountain_xz_ffsl_bigcfl-BiP100x10-20x20_ex1a_cce_production-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_bigcfl-C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_bigcfl-C48_ex1a_cce_production-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| python_unit_tests | succeeded |\r\n| remote-init_azspice | succeeded |\r\n| remote-init_ex1a | succeeded |\r\n| rose-stem_lint_checker | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-var_seuk_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-var_seuk_lam_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_adjoint_tests_canned_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_canned_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_azspice_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_ex1a_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_varying_ls-C12_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_adjoint_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_coupled_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gravity_wave_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_gravity_wave_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gungho_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_gungho_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_agnesi_nhyd_cart-BiP360x8-400x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C192_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C96_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit_pert_off | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit_pert_off | succeeded |\r\n| run_gungho_model_baroclinic-profile_perf-C24_MG_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bell_3d_cart-BiP300x200-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bryan_fritsch-moist-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_gungho_model_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200_realorog-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200_realorog-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_earth-like-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_gh_profile_omp6_6nodes-C192_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_grabowski-clark-BiP200x10-18x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_held-suarez-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_moist_baroclinic_orog-C48_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_moist_baroclinic_orog-C48_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_moist_baroclinic_orog-C48_MG_ex1a_gnu_fast-debug-64bit-crun2 | succeeded |\r\n| run_gungho_model_moist_baroclinic_orog-C48_MG_ex1a_gnu_fast-debug-64bit-crun3 | succeeded |\r\n| run_gungho_model_no-timestep-method-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_no-timestep-method-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-smag-l300-BiP200x8-5x5_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_runge-kutta-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_runge-kutta-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C96_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar3d_cart-BiP200x200-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_semi-implicit-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_semi-implicit-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_25m-BiP2048x8-25x25_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_50m-BiP1024x8-50x50_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_warm3dbubble-BiP100x100-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_gungho_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_tests_integration_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_nwp_gal9-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_nwp_gal9-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_op_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_op_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jules_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jules_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-seuk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-uk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-uk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-ukv_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-ukv_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric_atm_aquaplanet-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_aquaplanet-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_aquaplanet-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_aquaplanet-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_camembert_case3_gj1214b-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_camembert_case3_gj1214b-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_camembert_case3_gj1214b-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_camembert_case3_gj1214b-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_canned_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_1T-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_2T-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_4T-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_chem-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9_chem-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9_chem-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9_chem-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9_chem_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_chem_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_comp_tran_ref_3d_l120-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_hd209458b-C24_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_hd209458b-C24_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_hd209458b-C24_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_hd209458b-C24_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_casim-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_casim-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_casim-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_casim-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_coma9-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_coma9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_coma9-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_coma9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_comorph_dev-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_comorph_dev-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_comorph_dev-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_comorph_dev-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_comorph_tb-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_comorph_tb-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C48_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9-pert-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9-pert-C12_azspice_gnu_fast-debug-32bit_pert_off | succeeded |\r\n| run_lfric_atm_nwp_gal9-pert-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9-pert-C12_ex1a_cce_fast-debug-32bit_pert_off | succeeded |\r\n| run_lfric_atm_nwp_gal9_coarse_aero-C48_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_coarse_aero-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_coarse_aero_threaded-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_coarse_aero_threaded-C48_MG_ex1a_cce_production-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_coarse_aero_threaded-C48_MG_ex1a_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_da-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_da-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_da-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_da-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C12_azspice_gnu_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C12_ex1a_cce_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C48_MG_azspice_gnu_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C48_MG_ex1a_cce_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_eda-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_eda-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_eda-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_eda-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_eda_jada-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_eda_jada-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_eda_jada-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_eda_jada-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_ls_and_jedi-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_ls_and_jedi-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_mol-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_mol-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_mol-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_mol-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_1T-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_2T-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_2T-C48_MG_ex1a_cce_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_4T-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_4T-C48_MG_ex1a_cce_production-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3-seuk_ls_and_jedi_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_ral3-seuk_ls_and_jedi_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_thai_ben1-C48_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_thai_ben1-C48_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C12L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-nwp_gal9-N320L70_C48L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-var_seuk_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-var_seuk_lam_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_linear_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_linear_model_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_zero-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_zero-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_linear_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_mesh_BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x100-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP1024x8-50x50_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x10-18x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x200-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x8-5x5_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP2048x8-25x25_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP2x2-50000x50000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x200-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP360x8-400x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1500x1500_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_C16_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C192_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_rot_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_rot_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C96_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C96_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C96_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_falklands_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_falklands_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_uk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_uk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_ukv_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_ukv_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_seuk_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_seuk_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_var_seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_var_seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_cylinder_xz-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_cylinder_xz-BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_name_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_ngarch_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_physics_schemes_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_physics_schemes_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_shallow_water_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C96_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi_ffsl-C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi_ffsl-C96_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi_koren-C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi_koren-C96_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi_mono-C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi_mono-C96_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_shallow_water_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_shallow_water_vortex_plane-BiP64x64-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_vortex_plane-BiP64x64-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_vortex_plane_vi-BiP64x64-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_vortex_plane_vi-BiP64x64-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_socrates_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_socrates_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_solver_bicgstab-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_transport_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_curl_free_reversible_xz_ffsl_bigcfl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_curl_free_reversible_xz_ffsl_bigcfl-BiP100x10-20x20_ex1a_cce_production-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl_bigcfl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl_bigcfl-BiP100x10-20x20_ex1a_cce_production-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C96_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C96_ex1a_cce_production-64bit | succeeded |\r\n| run_transport_deformation_2d_ffsl_bigcfl-C96_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_ffsl_bigcfl-C96_ex1a_cce_production-64bit | succeeded |\r\n| run_transport_divergent_2d_cylinder_ffsl_bigcfl-C96_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_divergent_2d_cylinder_ffsl_bigcfl-C96_ex1a_cce_production-64bit | succeeded |\r\n| run_transport_eternal_fountain_xz_ffsl_bigcfl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_eternal_fountain_xz_ffsl_bigcfl-BiP100x10-20x20_ex1a_cce_production-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_bigcfl-C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_bigcfl-C48_ex1a_cce_production-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| site_validator | succeeded |\r\n| style_checker | succeeded |\r\n| test_launch-exe | succeeded |\r\n| validate_rose_meta | succeeded |\r\n
\r\n
\r\n:hourglass: waiting tasks - 2\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| housekeep_azspice | waiting |\r\n| housekeep_ex1a | waiting |\r\n
\r\n\r\n\r\n## Security Considerations\r\n\r\n- [X] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [X] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 139, "repository": "MetOffice/lfric_apps", "title": "Refactor of damping layer matrix", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/139"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjtrr4", "labels": ["KGO", "cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["jameskent-metoffice", "mo-lucy-gordon"], "sciTech Review": "jameskent-metoffice", "status": "Code Review", "title": "Refactor of damping layer matrix"}, {"assignees": ["yaswant"], "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @andrewcoughtrie \r\nCode Reviewer: @james-bruten-mo \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [ ] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [x] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [x] Documentation is complete and accurate\r\n- [x] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n", "number": 140, "repository": "MetOffice/lfric_apps", "title": "Add workflow to block direct merges to the stable branch", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/140"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjtsP8", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["andrewcoughtrie"], "status": "Done", "title": "Add workflow to block direct merges to the stable branch"}, {"assignees": ["tom-j-h"], "code Review": "stevemullerworth", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @mo-joshuacolclough \r\nCode Reviewer: @stevemullerworth \r\n\r\nWe aim to use a 32-bit build of the TLM/adjoint for JADA. To make this possible, some precision conversions are needed in the code, as JADA itself is all 64-bit.\r\n\r\n- closes #127\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n`~tom.hill/cylc-run/jelf_precision_conversions-developer-1/run1/trac.log`\r\n\r\nNo failures.\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 142, "repository": "MetOffice/lfric_apps", "title": "Floating-point precision conversions in jelf", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/142"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjtzv8", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["mo-joshuacolclough", "stevemullerworth"], "sciTech Review": "mo-joshuacolclough", "status": "Code Review", "title": "Floating-point precision conversions in jelf"}, {"code Review": "@mike-hobson", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @mike-hobson \r\n\r\n\r\nA JULES variable used by the coupling module is defined as double precision. It's used in calculations in LFRic coupling code that are carried out in single precision if 32 bit compilation is used. In this change a copy of the variable is created at the working precision of LFRic so that the coupled model can be used in double or single precision.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [ ] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\nThis change has been used in the coupled climate and coupled NWP workflows since apps2.2 with no problems.\r\n\r\n### trac.log\r\n# Test Suite Results - lfric_apps - i134_fix_coupled_32bit/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | i134_fix_coupled_32bit/run1 |\r\n| Suite User | tim.graham |\r\n| Workflow Start | 2026-01-15T10:16:23 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [timgraham-Met/lfric_apps@134_fix_coupled_32bit](https://github.com/timgraham-Met/lfric_apps/tree/134_fix_coupled_32bit) | False |\r\n| lfric_core | [MetOffice/lfric_core@2025.12.1](https://github.com/MetOffice/lfric_core/tree/2025.12.1) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n
\r\n:white_check_mark: succeeded tasks - 1106\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| build_adjoint_tests_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_azspice_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_tests_ex1a_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| build_adjoint_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_adjoint_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_coupled_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gravity_wave_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_gravity_wave_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_gravity_wave_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_gravity_wave_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_gravity_wave_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gungho_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_gungho_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_model_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| build_gungho_model_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_model_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| build_gungho_model_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| build_gungho_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_gungho_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_jedi_lfric_tests_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_jedi_lfric_tests_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_jedi_lfric_tests_integration_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_jules_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric2lfric_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric2lfric_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_full-debug-32bit | succeeded |\r\n| build_lfric_atm_azspice_gnu_production-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_fast-debug-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_full-debug-32bit | succeeded |\r\n| build_lfric_atm_ex1a_cce_production-32bit | succeeded |\r\n| build_lfric_coupled_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_lfric2um_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_scintelapi_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_lfricinputs_um2lfric_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_integration_tests_azspice_gnu_64bit | succeeded |\r\n| build_linear_model_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_model_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_linear_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_linear_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_mesh_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_mesh_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_name_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_name_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_ngarch_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_ngarch_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_ngarch_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_ngarch_ex1a_gnu_full-debug-64bit | succeeded |\r\n| build_physics_schemes_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_physics_schemes_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_shallow_water_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_shallow_water_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_shallow_water_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_shallow_water_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| build_solver_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_solver_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_solver_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_azspice_gnu_fast-debug-32bit | succeeded |\r\n| build_transport_azspice_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_azspice_gnu_full-debug-64bit | succeeded |\r\n| build_transport_ex1a_cce_fast-debug-64bit | succeeded |\r\n| build_transport_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| build_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| build_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| check_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200_realorog-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip200_realorog-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-nrun-v-crun | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-nrun-v-crun | succeeded |\r\n| check_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_runge-kutta-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_runge-kutta-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_semi-implicit-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_semi-implicit-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| check_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_nwp_gal9-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_nwp_gal9-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_runge-kutta-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_jules_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_oasis_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral3-seuk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_lfric2lfric_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_clim_gal9_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_chem_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_clim_gal9_chem_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| check_lfric_atm_nwp_gal9_debug-C12_azspice_gnu_full-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_debug-C12_ex1a_cce_full-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_noukca_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_noukca_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| check_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| check_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-nrun-v-crun | succeeded |\r\n| check_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_zero-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_nwp_gal9_zero-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_ngarch_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| check_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_bicgstab-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_cg-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_fgmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_gcr-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_gmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_jacobi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_solver_prec_only-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| check_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| check_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| config_dump_checker | succeeded |\r\n| export-source | succeeded |\r\n| export-source_azspice | succeeded |\r\n| export-source_ex1a | succeeded |\r\n| export-weights_azspice | succeeded |\r\n| export-weights_ex1a | succeeded |\r\n| fcm_make2_drivers | succeeded |\r\n| fcm_make2_lfric_coupled_ocean_ex1a_cce_fast-debug-64bit | succeeded |\r\n| fcm_make_drivers | succeeded |\r\n| fcm_make_lfric_coupled_ocean_ex1a_cce_fast-debug-64bit | succeeded |\r\n| fcm_make_lfric_coupled_river_ex1a_cce_fast-debug-64bit | succeeded |\r\n| generate_weights_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-aquaplanet_lbc_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-falklands_lam_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_weightgen_script | succeeded |\r\n| generate_weights_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_azspice_weightgen_script | succeeded |\r\n| global_variables_checker | succeeded |\r\n| housekeep_azspice | succeeded |\r\n| housekeep_ex1a | succeeded |\r\n| local_build_test | succeeded |\r\n| macro_chains_checker | succeeded |\r\n| perftools-export_gungho_model_baroclinic-profile_perf-C24_MG_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| pert_compare_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| pert_compare_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| plot_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| plot_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| plot_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| plot_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| plot_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| plot_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_cylinder_xz-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_cylinder_xz-BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| plot_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| plot_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| plot_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| python_unit_tests | succeeded |\r\n| remote-init_azspice | succeeded |\r\n| remote-init_ex1a | succeeded |\r\n| rose-stem_lint_checker | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_adjoint_tests_canned_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_canned_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_azspice_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_ex1a_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_default-C12_ex1a_gnu_full-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_tests_varying_ls-C12_azspice_gnu_fast-debug-64bit-rsolver64 | succeeded |\r\n| run_adjoint_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_adjoint_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_coupled_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gravity_wave_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_gravity_wave_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_300x4-BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_300x4-BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24_rec-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_c24_rec-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_limited_spherical_50x50_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_multigrid-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_multigrid-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_p1_75x4-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_p1_75x4-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gravity_wave_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_gravity_wave_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gungho_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_gungho_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| run_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit_pert_off | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit_pert_off | succeeded |\r\n| run_gungho_model_baroclinic-profile_perf-C24_MG_ex1a_perftools-gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_gungho_model_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200_realorog-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip200_realorog-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_force_profile-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_force_profile-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_geostrophic-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_geostrophic-BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_no-timestep-method-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_no-timestep-method-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_relax_theta-BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_rk-dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_rk-dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_runge-kutta-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_runge-kutta-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_semi-implicit-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_semi-implicit-for-linear-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_p1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph0pv1-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_skamarock_klemp_gw_ph1pv0-BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | succeeded |\r\n| run_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_gungho_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_gungho_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_integration_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_gh-si-for-linear-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_forecast_pseudo_pseudomodel-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_id_tlm_tests_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_jedi_lfric_tests_integration_tests_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_nwp_gal9-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_nwp_gal9-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_runge-kutta-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_forecast_tl_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-4OMP-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-4OMP-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-dry-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-1PE-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-1PE-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jedi_lfric_tests_tlm_tests_default-relaxed_solver-C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_jules_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_jules_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_canned_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9-C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9-C24_C12_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_clim_gal9_C12-ral_seuk_C16_lam_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_oasis_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral3-seuk_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral_seuk-C32_lam_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfric2lfric_ral_seuk-C32_lam_MG_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfric_atm_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_canned_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_clim_gal9_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_chem_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_clim_gal9_chem_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_azspice_gnu_production-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9-C12_ex1a_cce_production-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C12_azspice_gnu_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_debug-C12_ex1a_cce_full-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_1T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_noukca_2T-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_coma9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_comorph_dev_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_bomex-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_cbl_dry-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_comp_tran_ref-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_dice2-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_gabls4-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_sahara-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_seaice-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_snow-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_gal9_toga-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_hd209458b-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_llcs-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_llcs-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_rad_gas-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_constrain-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_moruses-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ral3_urban2t-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_land-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_azspice_gnu_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun0 | succeeded |\r\n| run_lfric_atm_scm_ukca_sea-BiP2x2-50000x50000_ex1a_cce_fast-debug-32bit-crun1 | succeeded |\r\n| run_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-aquaplanet-C48L38_N48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_lfric2um-umlam-C48L70_N512L70_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basic-C48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_scintelapi-basicgal-C12L70-mixingratio_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet-N48L38_C48L38_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-aquaplanet_lbc_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-basicgal-N96L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-falklands_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal-N320L70_C12L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_lfricinputs_um2lfric-protogal_chem-N48L70_C48L70_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_integration_tests_azspice_gnu_64bit | succeeded |\r\n| run_linear_model_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_zero-C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_nwp_gal9_zero-C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_runge-kutta-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_runge-kutta-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_linear_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_linear_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_mesh_BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x8-10x10_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x10-100x100_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x8-500x500_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x4-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x8-200x200_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP2x2-50000x50000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP2x2-50000x50000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x4-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x4-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP4x4-600x400_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP4x4-600x400_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP64x64-1500x1500_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP75x4-4000x2000_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_BiP75x4-4000x2000_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_C16_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_C16_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_C12_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_C12_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_op_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_MG_op_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_rot_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C24s_rot_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_C48_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_LAM50x50-2x2_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_aquaplanet_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_aquaplanet_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_falklands_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_falklands_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_seuk_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_ral3_seuk_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_seuk_MG_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_mesh_seuk_MG_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_cylinder_xz-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_cylinder_xz-BiP100x10-20x20_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_hadley_dcmip-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_hadley_dcmip-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_sbr_hori_lam-n96_lam_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_sbr_hori_lam-n96_lam_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_name_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_name_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_ngarch_default-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_ngarch_default-C24_ex1a_gnu_full-debug-64bit | succeeded |\r\n| run_physics_schemes_interface_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_physics_schemes_interface_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_shallow_water_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_galewsky_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_azspice_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun0 | succeeded |\r\n| run_shallow_water_gaussian-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit-crun1 | succeeded |\r\n| run_shallow_water_gaussian_ex-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_ex-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_gaussian_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal_vi-BiP32x32-1x1_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_thermal_vi-BiP32x32-1x1_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_shallow_water_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| run_shallow_water_williamson2_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson2_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5_vi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_shallow_water_williamson5_vi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_bicgstab-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_cg-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_fgmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_gcr-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_gmres-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_jacobi-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_solver_prec_only-C24_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_canned_azspice_gnu_fast-debug-32bit | succeeded |\r\n| run_transport_canned_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_canned_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_azspice_gnu_full-debug-64bit | succeeded |\r\n| run_transport_cylinder_xz_ffsl-BiP100x10-20x20_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_deformation_2d_cylinder_ffsl_bigcfl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_3d_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_ffsl_3d_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol_alt-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_hadley_dcmip_mol_alt-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_ffsl_ppm_edges-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_mol_overset-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cos_phi_mol_overset-C32_ex1a_cce_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cosine_fem-C32_azspice_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_sbr_hori_cosine_fem-C32_ex1a_gnu_fast-debug-64bit | succeeded |\r\n| run_transport_unit_tests_azspice_gnu_64bit | succeeded |\r\n| run_transport_unit_tests_ex1a_gnu_64bit | succeeded |\r\n| site_validator | succeeded |\r\n| style_checker | succeeded |\r\n| test_launch-exe | succeeded |\r\n| validate_rose_meta | succeeded |\r\n
\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\nTrivial change - so Sci/Tech has been skipped.\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [x] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [x] Documentation is complete and accurate\r\n- [x] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n", "number": 143, "repository": "MetOffice/lfric_apps", "title": "Fix coupled model with 32bit compilation", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/143"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjuC1Y", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["mike-hobson"], "status": "Done", "title": "Fix coupled model with 32bit compilation"}, {"assignees": ["mo-marqh"], "code Review": "EdHone", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @harry-shepherd \r\nCode Reviewer: @EdHone \r\n\r\n\r\n\r\nbuffer_size_factor: fix broken XIOS attribute name in XML configs\r\n\r\nThis configuration is currently invalid, but XIOS2 just ignores it, without throwing an error, but it never does anything.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n# Test Suite Results - lfric_apps - buffer_size_factor/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [buffer_size_factor/run1](https://cylchub/services/cylc-review/cycles/mark.hedley/?suite=buffer_size_factor%2Frun1) |\r\n| Suite User | mark.hedley |\r\n| Workflow Start | 2026-01-15T14:08:17 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [mo-marqh/lfric_apps@checkpointX3_refac1](https://github.com/mo-marqh/lfric_apps/tree/checkpointX3_refac1) | False |\r\n| lfric_core | [MetOffice/lfric_core@2025.12.1](https://github.com/MetOffice/lfric_core/tree/2025.12.1) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 1106\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [x] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [x] Documentation is complete and accurate\r\n- [x] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n", "number": 144, "repository": "MetOffice/lfric_apps", "title": "buffer_size_factor: fix broken XIOS attribute name in XML configs", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/144"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjuJ5E", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["EdHone", "EdHone"], "sciTech Review": "harry-shepherd", "status": "Done", "title": "buffer_size_factor: fix broken XIOS attribute name in XML configs"}, {"assignees": ["DrTVockerodtMO"], "code Review": "mo-lottieturner", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @tom-j-h \r\nCode Reviewer: @mo-lottieturner \r\n\r\n\r\n\r\n\r\nIncludes speed-ups to adjoint transport algorithms and kernels. Main algorithm speedups include removing vestigial setting of internal fields to zero, and then replacing `inc_X_plus_Y` invokes with `setval_x`. In the kernels, mostly consists of removing patterns like:\r\n\r\n```\r\ninternal_field = 0.0_r_def\r\n...\r\ndo idx = loop_min, loop_max\r\n internal_field = internal_field + \r\n ...\r\n internal_field = 0.0_r_def\r\nend do\r\n...\r\n```\r\n\r\nwith simply:\r\n\r\n```\r\ndo idx = loop_min, loop_max\r\n internal_field = \r\n ...\r\nend do\r\n```\r\n\r\nI have also included putting the proper kinds on zero setting as this may trigger implicit float conversions.\r\n\r\n\r\n\r\n\r\n- fixes #141 \r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n# Test Suite Results - lfric_apps - lfric_apps_speedup_adj_transport/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [lfric_apps_speedup_adj_transport/run1](https://cylchub/services/cylc-review/cycles/terence.vockerodt/?suite=lfric_apps_speedup_adj_transport%2Frun1) |\r\n| Suite User | terence.vockerodt |\r\n| Workflow Start | 2026-01-15T14:39:30 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [DrTVockerodtMO/lfric_apps@lfric_apps_speedup_adj_transport](https://github.com/DrTVockerodtMO/lfric_apps/tree/lfric_apps_speedup_adj_transport) | False |\r\n| lfric_core | [MetOffice/lfric_core@5d4d72f](https://github.com/MetOffice/lfric_core/tree/5d4d72f) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 1106\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 145, "repository": "MetOffice/lfric_apps", "title": "Speed-up of adjoint transport", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/145"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjuPxk", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["tom-j-h", "tom-j-h", "mo-lottieturner"], "sciTech Review": "tom-j-h", "status": "Code Review", "title": "Speed-up of adjoint transport"}, {"assignees": ["tommbendall"], "code Review": "allynt", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @atb1995 \r\nCode Reviewer: @allynt \r\n\r\n\r\n\r\n\r\n\r\nThis is a simple fix to the `sci_w3_to_w2_correction` kernel, to ensure that the 2D `displacement` field is indexed correctly (it is currently indexed as a 3D field when it is not).\r\n\r\nThis is linked to https://github.com/MetOffice/lfric_apps/pull/69, which fixes other bugs with the `sample_physics_winds_correction` option.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [X] I have performed a self-review of my own code\r\n- [X] My code follows the project's\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [X] Comments have been included that aid understanding and enhance the\r\n readability of the code\r\n- [X] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite\r\n using this branch\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (e.g. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (e.g. system\r\n tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource\r\n and have been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n# Test Suite Results - lfric_core - core_smp_phys_wind_correct/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [core_smp_phys_wind_correct/run1](https://cylchub/services/cylc-review/cycles/thomas.bendall/?suite=core_smp_phys_wind_correct%2Frun1) |\r\n| Suite User | thomas.bendall |\r\n| Workflow Start | 2026-01-15T15:21:44 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| lfric_core | [tommbendall/lfric_core@TBendall/smp_phys_wind_correct](https://github.com/tommbendall/lfric_core/tree/TBendall/smp_phys_wind_correct) | False |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 372\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [x] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel\r\n interface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 221, "repository": "MetOffice/lfric_core", "title": "Fix Correction to Sampling Physics Winds", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/221"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjuXjo", "labels": ["bug", "Linked Apps", "cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["atb1995", "allynt"], "sciTech Review": "atb1995", "status": "Code Review", "title": "Fix Correction to Sampling Physics Winds"}, {"assignees": ["MetBenjaminWent"], "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @yaswant \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 147, "repository": "MetOffice/lfric_apps", "title": "cla signed ", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/147"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjuiZY", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["yaswant"], "status": "Done", "title": "cla signed "}, {"assignees": ["tommbendall"], "code Review": "cameronbateman-mo", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @thomasmelvin \r\nCode Reviewer: @cameronbateman-mo \r\n\r\n\r\n\r\n\r\n\r\nThis fixes the `wth_to_w0_average` kernel, which was using the incorrect multiplicity to average a field from Wtheta to W0. This kernel is used in a 1-2-1 filter in stochastic physics -- the filter is performed a number of times, and the impact of the incorrect multiplicity is that the stochastic physics tendencies were an order of magnitude too small.\r\n\r\n- linked MetOffice/lfric_apps#148\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite\r\n using this branch\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (e.g. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (e.g. system\r\n tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource\r\n and have been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n# Test Suite Results - lfric_core - fix_w0_wth_filter/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [fix_w0_wth_filter/run1](https://cylchub/services/cylc-review/cycles/thomas.bendall/?suite=fix_w0_wth_filter%2Frun1) |\r\n| Suite User | thomas.bendall |\r\n| Workflow Start | 2026-01-15T17:31:52 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| lfric_core | [tommbendall/lfric_core@TBendall/FixW0WthFilter](https://github.com/tommbendall/lfric_core/tree/TBendall/FixW0WthFilter) | False |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 372\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [x] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel\r\n interface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [X] I understand this area of code and the changes being added\r\n- [X] The proposed changes correspond to the pull request description\r\n- [X] Documentation is sufficient (do documentation papers need updating)\r\n- [X] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 222, "repository": "MetOffice/lfric_core", "title": "Fix averaging kernel used in stochastic physics filter", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/222"}, "id": "PVTI_lADOAGrG5M4A_OAXzgju1p4", "labels": ["bug", "Linked Apps", "KGO", "cla-signed"], "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["thomasmelvin", "cameronbateman-mo"], "sciTech Review": "thomasmelvin", "status": "Code Review", "title": "Fix averaging kernel used in stochastic physics filter"}, {"assignees": ["tommbendall"], "code Review": "oakleybrunt", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @mo-claudiosanchez \r\nCode Reviewer: @oakleybrunt \r\n\r\n\r\n\r\n\r\n\r\nThis ticket applies a handful of simple fixes to issues in stochastic physics:\r\n1. It picks up the fixed Wtheta -> W0 kernel from: https://github.com/MetOffice/lfric_core/pull/222\r\n2. Ensures that the forcing pattern is applied appropriately at W3 and Wtheta points, by passing a new `level_offset` argument to `stph_fp_main_alg`\r\n3. Normalises the shifted on wavenumbers in the same way as the comparative UM code: https://github.com/MetOffice/um/blob/main/src/atmosphere/stochastic_physics/stph_skeb2-stph_skeb2.F90#L1341\r\n\r\n- linked to MetOffice/lfric_core#222\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [ ] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n# Test Suite Results - lfric_apps - stoch_phys_fixes/run4\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [stoch_phys_fixes/run4](https://cylchub/services/cylc-review/cycles/thomas.bendall/?suite=stoch_phys_fixes%2Frun4) |\r\n| Suite User | thomas.bendall |\r\n| Workflow Start | 2026-01-16T13:37:13 |\r\n| Groups Run | all |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [tommbendall/lfric_apps@TBendall/StochPhysFixes](https://github.com/tommbendall/lfric_apps/tree/TBendall/StochPhysFixes) | False |\r\n| lfric_core | [tommbendall/lfric_core@TBendall/FixW0WthFilter](https://github.com/tommbendall/lfric_core/tree/TBendall/FixW0WthFilter) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 1456\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 148, "repository": "MetOffice/lfric_apps", "title": "Stochastic Physics Fixes", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/148"}, "id": "PVTI_lADOAGrG5M4A_OAXzgju66U", "labels": ["bug", "Linked Core", "KGO", "cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["mo-claudiosanchez", "oakleybrunt"], "sciTech Review": "mo-claudiosanchez", "status": "Code Review", "title": "Stochastic Physics Fixes"}, {"assignees": ["cjohnson-pi", "mo-marqh"], "code Review": "mo-marqh", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: James Kent @jameskent-metoffice \r\nCode Reviewer: @mo-marqh \r\n\r\n\r\n\r\n\r\n* Adds split transport to the linear and adjoint code (to give e.g. VHV vertical horizontal vertical rather than 3d)\r\n* Adds a transport_efficiency switch to the split transport and the mol (method of lines) transport code\r\n* Tests in the linear_model app and adjoint_tests\r\n\r\nAssociated with https://github.com/MetOffice/lfric_apps/issues/108 and https://github.com/MetOffice/lfric_apps/issues/113\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [ ] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n# Test Suite Results - lfric_apps - test_split_mol/run15\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [test_split_mol/run15](https://cylchub/services/cylc-review/cycles/christine.johnson/?suite=test_split_mol%2Frun15) |\r\n| Suite User | christine.johnson |\r\n| Workflow Start | 2026-01-16T12:23:18 |\r\n| Groups Run | suite_default |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [cjohnson-pi/lfric_apps@split_mol](https://github.com/cjohnson-pi/lfric_apps/tree/split_mol) | False |\r\n| lfric_core | [MetOffice/lfric_core@5d4d72f](https://github.com/MetOffice/lfric_core/tree/5d4d72f) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 1106\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 149, "repository": "MetOffice/lfric_apps", "title": "Split mol with transport_efficiency", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/149"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjxALo", "labels": ["KGO", "macro", "cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["jameskent-metoffice", "mo-marqh"], "status": "Code Review", "title": "Split mol with transport_efficiency"}, {"assignees": ["james-bruten-mo"], "content": {"body": "Fixing a missed argument that should have been deleted in previous ticket", "number": 165, "repository": "MetOffice/SimSys_Scripts", "title": "Fix export", "type": "PullRequest", "url": "https://github.com/MetOffice/SimSys_Scripts/pull/165"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjxAe4", "labels": ["bug"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/SimSys_Scripts", "reviewers": ["yaswant", "yaswant"], "status": "Done", "title": "Fix export"}, {"assignees": ["mo-alistairp"], "code Review": "MetBenjaminWent", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @TeranIvy \r\nCode Reviewer: @MetBenjaminWent \r\n\r\n\r\n\r\n\r\nThis pull request is necessary to add the GH_SCALAR_ARRAY metadata type into LFRic to support arrays of scalars in LFRic. This PR goes alongside the corresponding PSyclone implentation which adds this support (both https://github.com/stfc/PSyclone/issues/1312 and https://github.com/stfc/PSyclone/pull/3101).\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite\r\n using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n# Test Suite Results - lfric_core - gh_scalar_array_arg_mod/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [gh_scalar_array_arg_mod/run1](https://cylchub/services/cylc-review/cycles/alistair.pirrie/?suite=gh_scalar_array_arg_mod%2Frun1) |\r\n| Suite User | alistair.pirrie |\r\n| Workflow Start | 2026-01-19T10:24:41 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| lfric_core | [mo-alistairp/lfric_core@add_gh_scalar_array_to_argument_mod](https://github.com/mo-alistairp/lfric_core/tree/add_gh_scalar_array_to_argument_mod) | False |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 372\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [x] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel\r\n interface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 223, "repository": "MetOffice/lfric_core", "title": "Add GH_SCALAR_ARRAY to argument_mod", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/223"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjxqXs", "labels": ["enhancement", "cla-signed"], "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["TeranIvy", "TeranIvy", "MetBenjaminWent"], "status": "Code Review", "title": "Add GH_SCALAR_ARRAY to argument_mod"}, {"assignees": ["mo-lucy-gordon"], "code Review": "Pierre-siddall", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @james-bruten-mo \r\nCode Reviewer: @Pierre-siddall \r\n\r\n\r\n\r\nThis adds the fortitude linter to the test suite, and enables one rule to run to demonstrate basic functionality. Subsequent branches will add more rules and testing.\r\n\r\nAssociated with https://github.com/MetOffice/lfric_core/pull/217\r\n\r\nThis addition will mean Fortitude will run when the \"scripts\"/ \"developer\"/ \"all\" groups, or \"fortitude_linter\" group itself is run with the Cylc test suite.\r\n\r\nThe rule added here can be referenced Fortitude documentation website here: https://fortitude.readthedocs.io/en/stable/rules/trailing-whitespace/\r\n\r\nFor reference, these are some example outputs and errors from when fortitude runs:\r\n\r\n- No errors output:\r\nhttps://cylchub/services/cylc-review/view/lucy.gordon?&suite=lapps_add_gh_no_errors%2Frun10&no_fuzzy_time=0&path=log/job/1/fortitude_linter/01/job.out\r\n\r\n- One lint error outputs:\r\nhttps://cylchub/services/cylc-review/view/lucy.gordon?&suite=lapps_add_gh_no_errors%2Frun8&no_fuzzy_time=0&path=log/job/1/fortitude_linter/01/job.err\r\n\r\n- Non-lint error outputs:\r\nhttps://cylchub/services/cylc-review/view/lucy.gordon?&suite=lapps_add_gh_no_errors%2Frun9&no_fuzzy_time=0&path=log/job/1/fortitude_linter/01/job.err\r\n\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n# Test Suite Results - lfric_apps - lapps_add_gh_no_errors/run5\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [lapps_add_gh_no_errors/run5](https://cylchub/services/cylc-review/cycles/lucy.gordon/?suite=lapps_add_gh_no_errors%2Frun5) |\r\n| Suite User | lucy.gordon |\r\n| Workflow Start | 2026-01-15T18:43:49 |\r\n| Groups Run | all |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [mo-lucy-gordon/lfric_apps@adding_fortitude](https://github.com/mo-lucy-gordon/lfric_apps/tree/adding_fortitude) | False |\r\n| lfric_core | [MetOffice/lfric_core@5d4d72f](https://github.com/MetOffice/lfric_core/tree/5d4d72f) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 1457\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 150, "repository": "MetOffice/lfric_apps", "title": "Adding fortitude", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/150"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjxrDM", "labels": ["cla-signed"], "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["james-bruten-mo"], "sciTech Review": "james-bruten-mo", "status": "Changes Requested", "title": "Adding fortitude"}, {"assignees": ["Pierre-siddall"], "code Review": "james-bruten-mo", "content": {"body": "# PR Summary\r\n\r\nCode Reviewer: @james-bruten-mo \r\n\r\n\r\n\r\n\r\n\r\nThis PR implements the usage of a CR checker in the MOCI CI/CD pipeline in order to ensure that a CR has taken place before a change is commited to the main branch. \r\n\r\n\r\n\r\n\r\n\r\ncloses #13 \r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n- [ ] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the Moci rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 16, "repository": "MetOffice/moci", "title": "Add CR checking workflow to CI/CD Pipeline", "type": "PullRequest", "url": "https://github.com/MetOffice/moci/pull/16"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjx82M", "labels": ["enhancement", "cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/moci", "reviewers": ["james-bruten-mo"], "status": "Done", "title": "Add CR checking workflow to CI/CD Pipeline"}, {"assignees": ["cjohnson-pi"], "code Review": "r-sharp", "content": {"body": "# PR Summary\r\n\r\nRemove model-related configuration from mesh configuration files.\r\n\r\nSci/Tech Reviewer: (not required as simple 'tidy up' change) \r\nCode Reviewer: @r-sharp \r\n\r\n\r\n\r\n\r\n* Remove redundant namelists\r\n\r\nAssociated with https://github.com/MetOffice/lfric_apps/issues/112\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n# Test Suite Results - lfric_apps - remove_ral_mesh/run2\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [remove_ral_mesh/run2](https://cylchub/services/cylc-review/cycles/christine.johnson/?suite=remove_ral_mesh%2Frun2) |\r\n| Suite User | christine.johnson |\r\n| Workflow Start | 2026-01-19T09:04:20 |\r\n| Groups Run | suite_default |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [cjohnson-pi/lfric_apps@remove_ral_mesh](https://github.com/cjohnson-pi/lfric_apps/tree/remove_ral_mesh) | False |\r\n| lfric_core | [MetOffice/lfric_core@5d4d72f](https://github.com/MetOffice/lfric_core/tree/5d4d72f) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 1106\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 153, "repository": "MetOffice/lfric_apps", "title": "Remove redundant info from mesh configs", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/153"}, "id": "PVTI_lADOAGrG5M4A_OAXzgjytLQ", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["r-sharp"], "status": "Code Review", "title": "Remove redundant info from mesh configs"}, {"assignees": ["cjohnson-pi"], "code Review": "stevemullerworth", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @tom-j-h \r\nCode Reviewer: @stevemullerworth \r\n\r\n\r\n\r\n\r\n\r\nEnable the tangent linear and adjoint models to use 32 bit precision and test. \r\n\r\n* Update the adjoint_tests and linear_model iodef files so that W2 fields are not written out. This also includes splitting the iodef files into many small iodef files (to mirror the gungho_model iodef files) - this makes it easier to manage going forward.\r\n* Correct the diagnostics source code so that xios only tries to write out fields if they are listed in the iodef file. (32 bit does not work for writing out W2 fields).\r\n* Update the plotting to plot winds in W3 rather than W2 (as W2 are no longer in the diagnostic file).\r\n* Update the adjoint test parameters to avoid dividing by zero errors.\r\n* Add 32bit and 64bit tests, and with a variety of compilers, to the rose stem tests for linear_model and adjoint_tests. For adjoint_tests, slightly different solver settings are required for 32bit and 64 bit.\r\n\r\nhttps://github.com/MetOffice/lfric_apps/issues/111\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n# Test Suite Results - lfric_apps - linear_32bit/run7\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [linear_32bit/run7](https://cylchub/services/cylc-review/cycles/christine.johnson/?suite=linear_32bit%2Frun7) |\r\n| Suite User | christine.johnson |\r\n| Workflow Start | 2026-01-20T10:33:37 |\r\n| Groups Run | suite_default |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [cjohnson-pi/lfric_apps@linear_32bit](https://github.com/cjohnson-pi/lfric_apps/tree/linear_32bit) | False |\r\n| lfric_core | [MetOffice/lfric_core@5d4d72f](https://github.com/MetOffice/lfric_core/tree/5d4d72f) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 1151\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 154, "repository": "MetOffice/lfric_apps", "title": "Linear 32bit", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/154"}, "id": "PVTI_lADOAGrG5M4A_OAXzgj33Mg", "labels": ["KGO", "cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["tom-j-h", "stevemullerworth"], "sciTech Review": "tom-j-h", "status": "Code Review", "title": "Linear 32bit"}, {"assignees": ["Pierre-siddall"], "content": {"body": "# PR Summary\r\n\r\nCode Reviewer: \r\n\r\n\r\n\r\n\r\n\r\nThis PR moves the pylint.rc file into the top level of the MOCI repository so that future linting actions can make use of . \r\n\r\n\r\n\r\n\r\n\r\ncloses #14 \r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the Moci rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 17, "repository": "MetOffice/moci", "title": "Move pylint.rc", "type": "PullRequest", "url": "https://github.com/MetOffice/moci/pull/17"}, "id": "PVTI_lADOAGrG5M4A_OAXzgj39oM", "labels": ["cla-signed"], "repository": "https://github.com/MetOffice/moci", "status": "In Progress", "title": "Move pylint.rc"}, {"assignees": ["mo-alistairp"], "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 155, "repository": "MetOffice/lfric_apps", "title": "Sign contributors", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/155"}, "id": "PVTI_lADOAGrG5M4A_OAXzgj4DXE", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "status": "Done", "title": "Sign contributors"}, {"assignees": ["tom-j-h"], "code Review": "mike-hobson", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @thomasmelvin \r\nCode Reviewer: @mike-hobson \r\n\r\nThis issue was found in development of the JADA benchmark.\r\n\r\n Other changes made meant that `jedi_lfric_tests` was crashing due to a divide by zero here:\r\nhttps://github.com/MetOffice/lfric_core/blob/a4caea11d9984b109fe00d8309a6f135b1cdf59a/infrastructure/source/mesh/panel_decomposition_mod.f90#L252\r\n`mp` is initialised here:\r\nhttps://github.com/MetOffice/lfric_core/blob/a4caea11d9984b109fe00d8309a6f135b1cdf59a/infrastructure/source/mesh/panel_decomposition_mod.f90#L879-L885\r\nThe solution is to instead set `mp = max(1, this_panel_width / shortest_panel_width)`.\r\n\r\nPlease note, I did not find this issue or develop the fix - I just need it for the linked PR below, and there wasn't a PR yet.\r\n\r\n- linked MetOffice/lfric_apps#156\r\n\r\n- closes #226\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite\r\n using this branch\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\nI can't find my `trac.log`! It might be because I ran with `--no-run-name`? Here's the Cylc Review: https://cylchub/services/cylc-review/taskjobs/tom.hill/?suite=fix_jelf_divide_by_zero-develop.\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel\r\n interface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 227, "repository": "MetOffice/lfric_core", "title": "Avoid `panel_decomposition_mod` causing a divide-by-zero", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/227"}, "id": "PVTI_lADOAGrG5M4A_OAXzgj5JPM", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["mo-rickywong", "mike-hobson", "thomasmelvin", "thomasmelvin", "mike-hobson"], "sciTech Review": "thomasmelvin", "status": "Approved", "title": "Avoid `panel_decomposition_mod` causing a divide-by-zero"}, {"assignees": ["tom-j-h"], "code Review": "mike-hobson", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @ss421 \r\nCode Reviewer: @mike-hobson \r\n\r\n**PLEASE NOTE** - this is a follow-on to #132. The branch was created from #132's branch in my fork, but I can't make a PR into that branch because then I would be stuck in my fork. So, to look at the actual changes relevant to this PR alone, look at the diff of this branch with #132's branch: https://github.com/tom-j-h/lfric_apps/compare/jelf_adjoint_test_tolerance_nml...tom-j-h:lfric_apps:align_jedi_lfric_tests_to_linear_model\r\n\r\nSimilar to #84, but for applications of `jedi_lfric_tests` that use the linear and adjoint models.\r\n\r\nThis change relies on the same small code change in science/adjoint as #84. It is also very useful to be able to set adjoint test tolerance via a namelist variable () for running the strict vs. relaxed adjoint tests, hence the order of branching.\r\n\r\nA bug (incorrect adjoint) relating to the incremental wind interpolation added in https://code.metoffice.gov.uk/trac/lfric_apps/ticket/369 has arisen due to the changes here. The specific cause has not been identified. For now, this is switched off. This is not high priority, hence not investigating and fixing it as part of this work. Have opened #128.\r\n\r\nThe same approach to handling the bug highlighted in #84 (`rrt_equals_dt`) is taken here; this has issue #87.\r\n\r\n- linked MetOffice/lfric_core#227\r\n\r\n- is blocked-by #132\r\n- blocks #161\r\n- closes #85\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\nI can't find my `trac.log`! It might be because I ran with `--no-run-name`? Here's the Cylc Review: https://cylchub/services/cylc-review/taskjobs/tom.hill/?suite=align_jedi_lfric_tests_to_linear_model-developer.\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 156, "repository": "MetOffice/lfric_apps", "title": "Align jedi_lfric_tests linear model/adjoint testing to adjoint_tests and linear_model", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/156"}, "id": "PVTI_lADOAGrG5M4A_OAXzgj5NCY", "labels": ["KGO", "cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["ss421", "ss421", "mike-hobson"], "sciTech Review": "ss421", "status": "Code Review", "title": "Align jedi_lfric_tests linear model/adjoint testing to adjoint_tests and linear_model"}, {"assignees": ["mo-jmanners"], "code Review": "yaswant", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @Petzi1 \r\nCode Reviewer: @yaswant \r\n\r\n\r\n\r\n\r\n\r\nCOSP requires an array of lit points (where the sun is above the horizon) so that SW diagnostics can be appropriately sampled. Currently the lit points are calculated for the model timestep. If COSP diagnostics are sampled less often than every model timestep then it would be more accurate to calculate the lit points based on the \"COSP timestep\".\r\n\r\nA namelist option is added: **n_cosp_step**\r\n\r\nThis sets the number of model timesteps over which to calculate **lit_fraction_cosp** in _illuminate_kernel_mod.F90_. The **lit_fraction_cosp** is then passed to _cosp_alg_mod.x90_ in place of **lit_fraction** (the lit fraction for the model timestep).\r\n\r\n\r\n\r\n\r\ncloses #135 \r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [ ] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\nI have run tests using the standard rose-stem climate configuration with n_cosp_step=1 and n_cosp_step=12. The COSP **sunlit_mask** diagnostic was plotted in each case and correctly showed the increase in sunlit area when n_cosp_step=12.\r\n\r\n### trac.log\r\n# Test Suite Results - lfric_apps - cosp_timestep_test/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [cosp_timestep_test/run1](https://cylchub/services/cylc-review/cycles/james.manners/?suite=cosp_timestep_test%2Frun1) |\r\n| Suite User | james.manners |\r\n| Workflow Start | 2026-01-20T10:38:56 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [mo-jmanners/lfric_apps@cosp_timestep_test](https://github.com/mo-jmanners/lfric_apps/tree/cosp_timestep_test) | False |\r\n| lfric_core | [MetOffice/lfric_core@2025.12.1](https://github.com/MetOffice/lfric_core/tree/2025.12.1) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 1106\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 158, "repository": "MetOffice/lfric_apps", "title": "Add a COSP timestep so diagnostics can be sampled less often", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/158"}, "id": "PVTI_lADOAGrG5M4A_OAXzgj8TOw", "labels": ["macro", "cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["Petzi1", "yaswant"], "sciTech Review": "Petzi1", "status": "Code Review", "title": "Add a COSP timestep so diagnostics can be sampled less often"}, {"assignees": ["james-bruten-mo"], "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @jennyhickson \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's style guidelines\r\n- [ ] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the UKCA rose-stem suite\r\n- [ ] If shared files have been modified, I have run the UM and LFRic Apps rose\r\n stem suites\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 16, "repository": "MetOffice/ukca", "title": "add track review project", "type": "PullRequest", "url": "https://github.com/MetOffice/ukca/pull/16"}, "id": "PVTI_lADOAGrG5M4A_OAXzgj8jNQ", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/ukca", "reviewers": ["jennyhickson"], "status": "Done", "title": "add track review project"}, {"assignees": ["james-bruten-mo"], "content": {"body": "Add the project tracker and a basic PR template", "number": 4, "repository": "MetOffice/um_meta", "title": "add project tracker", "type": "PullRequest", "url": "https://github.com/MetOffice/um_meta/pull/4"}, "id": "PVTI_lADOAGrG5M4A_OAXzgj8kcI", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/um_meta", "reviewers": ["jennyhickson"], "status": "Done", "title": "add project tracker"}, {"assignees": ["mike-hobson"], "code Review": "svadams", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: Not Required\r\nCode Reviewer: @svadams\r\n\r\n\r\n\r\nPR #198 added a new file to the repository: `infrastructure/source/field/exchange_map_collection_mod.F90`. Unfortunately, it didn't contain any header info - which managed to get through three levels of review (myself included). This PR adds that header info.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite\r\n using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n# Test Suite Results - lfric_core - Add_copyright/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [Add_copyright/run1](https://cylchub/services/cylc-review/cycles/mike.hobson/?suite=Add_copyright%2Frun1) |\r\n| Suite User | mike.hobson |\r\n| Workflow Start | 2026-01-20T13:13:44 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| lfric_core | [mike-hobson/lfric_core@Add-copyright](https://github.com/mike-hobson/lfric_core/tree/Add-copyright) | False |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 372\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel\r\n interface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\nThis is simply a change to comments within the code. No Sci/Tech review is required\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 228, "repository": "MetOffice/lfric_core", "title": "Update exchange_map_collection with copyright header", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/228"}, "id": "PVTI_lADOAGrG5M4A_OAXzgj8vEk", "labels": ["cla-signed"], "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["MatthewHambley", "svadams"], "status": "Code Review", "title": "Update exchange_map_collection with copyright header"}, {"assignees": ["tom-j-h"], "code Review": "mo-alistairp", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @mo-joshuacolclough \r\nCode Reviewer: @mo-alistairp \r\n\r\n\r\n\r\nA useful capability for testing robustness and performance in a realistic scenario.\r\n\r\n- is blocked-by #156\r\n- blocks #163\r\n- closes #125\r\n\r\n**PLEASE NOTE** - this is a follow-on to #156. The branch was created from #156's branch in my fork, but I can't make a PR into that branch because then I would be stuck in my fork. So, to look at the actual changes relevant to this PR alone, look at the diff of this branch with #156's branch: https://github.com/tom-j-h/lfric_apps/compare/align_jedi_lfric_tests_to_linear_model...tom-j-h:lfric_apps:jelf_real_increment_adjoint_test\r\n\r\n**PLEASE ALSO NOTE** - #156 relies on https://github.com/MetOffice/lfric_core/pull/227, so when testing, I used this Core branch.\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n# Test Suite Results - lfric_apps - jelf_real_increment_adjoint_test-developer/run2\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [jelf_real_increment_adjoint_test-developer/run2](https://cylchub/services/cylc-review/cycles/tom.hill/?suite=jelf_real_increment_adjoint_test-developer%2Frun2) |\r\n| Suite User | tom.hill |\r\n| Workflow Start | 2026-01-20T14:45:21 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [tom-j-h/lfric_apps@jelf_C224_adjoint_tests](https://github.com/tom-j-h/lfric_apps/tree/jelf_C224_adjoint_tests) | False |\r\n| lfric_core | [tom-j-h/lfric_core@2a67d6b](https://github.com/tom-j-h/lfric_core/tree/2a67d6b) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 1108\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 161, "repository": "MetOffice/lfric_apps", "title": "Adjoint test initialised from realistic increment in jelf", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/161"}, "id": "PVTI_lADOAGrG5M4A_OAXzgj8vdU", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["mo-joshuacolclough", "mo-alistairp"], "sciTech Review": "mo-joshuacolclough", "status": "Code Review", "title": "Adjoint test initialised from realistic increment in jelf"}, {"assignees": ["james-bruten-mo"], "code Review": "t00sa", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @MatthewHambley \r\nCode Reviewer: @t00sa \r\n\r\n\r\n\r\nAt the git migration incremental builds on the command line no longer worked as timestamps in github are based on clone date, not commit date. This reenables this functionality by fetching/pulling changes if the build is being rerun. This has been tested on the command line for both a run with physics code (lfric_atm) and without (gungho_model). The 2nd build time is much quicker as expected.\r\n\r\nThis also enables building using the local github mirrors which will be useful once these are also available on the HPC. Again, these have been tested on the cli and with incremental builds.\r\n\r\nThis change adds `get_git_sources` which is mostly a copy of the same file from SimSys_Scripts. Having 2 copies isn't ideal, but I can't think of another way to make that SimSys_Scripts file available when building locally (short of installing it as a library). Hopefully this is something that'll be improved by fab! \r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n# Test Suite Results - lfric_apps - test_incremental_builds_change/run2\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [test_incremental_builds_change/run2](https://cylchub/services/cylc-review/cycles/james.bruten/?suite=test_incremental_builds_change%2Frun2) |\r\n| Suite User | james.bruten |\r\n| Workflow Start | 2026-01-20T15:03:56 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [james-bruten-mo/lfric_apps@improve_local_builds](https://github.com/james-bruten-mo/lfric_apps/tree/improve_local_builds) | False |\r\n| lfric_core | [MetOffice/lfric_core@aa32824](https://github.com/MetOffice/lfric_core/tree/aa32824) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 1106\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 162, "repository": "MetOffice/lfric_apps", "title": "Reenable incremental builds", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/162"}, "id": "PVTI_lADOAGrG5M4A_OAXzgj8-6k", "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["MatthewHambley", "MatthewHambley", "MatthewHambley", "t00sa"], "sciTech Review": "MatthewHambley", "status": "Code Review", "title": "Reenable incremental builds"}, {"assignees": ["Pierre-siddall"], "code Review": "ericaneininger", "content": {"body": "# PR Summary\r\n\r\nCode Reviewer: @ericaneininger \r\n\r\n\r\n\r\n\r\n\r\nThis PR aims to unify shell out commands across MOCI so that they all have the same semantics. The changes involved include adding a separate library to handle shell operations and replacing current shell operations with a newly implemented `exec_subprocess` function. \r\n\r\n\r\n\r\n\r\n\r\ncloses #12 \r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the Moci rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [x] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 19, "repository": "MetOffice/moci", "title": "Move shell out commands into separate library", "type": "PullRequest", "url": "https://github.com/MetOffice/moci/pull/19"}, "id": "PVTI_lADOAGrG5M4A_OAXzgj9CO0", "labels": ["cla-signed"], "repository": "https://github.com/MetOffice/moci", "reviewers": ["ericaneininger", "ericaneininger"], "status": "Code Review", "title": "Move shell out commands into separate library"}, {"assignees": ["tom-j-h"], "code Review": "jennyhickson", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @mo-joshuacolclough \r\nCode Reviewer: @jennyhickson \r\n\r\nFor testing operational TLM/adjoint configuration. There is also a test with solver settings that mean the solver runs closer to convergence, and another test initialised from a realistic increment rather than random data. A new `lfric_atm` task is added to generate this realistic increment, analogous to the existing C12 task. A script to convert the output of the `lfric_atm` task to a file suitable to use for the `jedi_tlm_tests` task is added, again analogous to the existing C12 task. I've put these files in the locations in my `$DATADIR` that you can see in the diff - but these will need to be added to `BIG_DATA_DIR` as part of this change.\r\n\r\n- is blocked-by #161\r\n- blocks #182\r\n- closes #126\r\n\r\n**PLEASE NOTE** - this is a follow-on to #161. The branch was created from #161's branch in my fork, but I can't make a PR into that branch because then I would be stuck in my fork. So, to look at the actual changes relevant to this PR alone, look at the diff of this branch with #161's branch: https://github.com/tom-j-h/lfric_apps/compare/jelf_real_increment_adjoint_test...tom-j-h:lfric_apps:jelf_C224_adjoint_tests\r\n\r\n**PLEASE ALSO NOTE** - #161 is blocked by #156 which relies on https://github.com/MetOffice/lfric_core/pull/227, so when testing, I used this Core branch.\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n# Test Suite Results - lfric_apps - jelf_C224_adjoint_tests-developer/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [jelf_C224_adjoint_tests-developer/run1](https://cylchub/services/cylc-review/cycles/tom.hill/?suite=jelf_C224_adjoint_tests-developer%2Frun1) |\r\n| Suite User | tom.hill |\r\n| Workflow Start | 2026-01-22T11:33:44 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [tom-j-h/lfric_apps@tlad_boundary_layer](https://github.com/tom-j-h/lfric_apps/tree/tlad_boundary_layer) | False |\r\n| lfric_core | [tom-j-h/lfric_core@2a67d6b](https://github.com/tom-j-h/lfric_core/tree/2a67d6b) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 1112\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 163, "repository": "MetOffice/lfric_apps", "title": "C224 adjoint tests in jelf", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/163"}, "id": "PVTI_lADOAGrG5M4A_OAXzgj9Nd8", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["mo-joshuacolclough", "jennyhickson"], "sciTech Review": "mo-joshuacolclough", "status": "Code Review", "title": "C224 adjoint tests in jelf"}, {"assignees": ["tommbendall"], "code Review": "MatthewHambley", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @jameskent-metoffice \r\nCode Reviewer: @MatthewHambley \r\n\r\n\r\n\r\n\r\n\r\nThis PR adds `height_w0` and `height_w2h` diagnostics, which allows the vertical height to be output at W0 and W2H points, if requested (and if #164 is addressed for lfric_atm).\r\n\r\nI have also taken the opportunity to do a small bit of tidying of `gungho_diagnostics_driver_mod.F90`\r\n\r\n**Linked to**: MetOffice/lfric_core#229\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n# Test Suite Results - lfric_apps - heights_more/run4\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [heights_more/run4](https://cylchub/services/cylc-review/cycles/thomas.bendall/?suite=heights_more%2Frun4) |\r\n| Suite User | thomas.bendall |\r\n| Workflow Start | 2026-01-21T10:07:40 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [tommbendall/lfric_apps@TBendall/HeightsMore](https://github.com/tommbendall/lfric_apps/tree/TBendall/HeightsMore) | False |\r\n| lfric_core | [tommbendall/lfric_core@TBendall/HeightW0](https://github.com/tommbendall/lfric_core/tree/TBendall/HeightW0) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 1106\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 165, "repository": "MetOffice/lfric_apps", "title": "Allow outputting of vertical height in W0 and W2H function spaces", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/165"}, "id": "PVTI_lADOAGrG5M4A_OAXzgj9gpY", "labels": ["enhancement", "Linked Core", "cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["jameskent-metoffice", "MatthewHambley"], "sciTech Review": "jameskent-metoffice", "status": "Code Review", "title": "Allow outputting of vertical height in W0 and W2H function spaces"}, {"assignees": ["tommbendall"], "code Review": "MatthewHambley", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @jameskent-metoffice \r\nCode Reviewer: @MatthewHambley \r\n\r\n\r\n\r\n\r\n\r\nWe can already store the vertical height field at many function spaces, but the W0 function space is missing. This PR adds it in.\r\n\r\n**Linked to**: MetOffice/lfric_apps#165\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite\r\n using this branch\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (e.g. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (e.g. system\r\n tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource\r\n and have been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n# Test Suite Results - lfric_core - height_w0/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [height_w0/run1](https://cylchub/services/cylc-review/cycles/thomas.bendall/?suite=height_w0%2Frun1) |\r\n| Suite User | thomas.bendall |\r\n| Workflow Start | 2026-01-20T16:15:30 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| lfric_core | [tommbendall/lfric_core@TBendall/HeightW0](https://github.com/tommbendall/lfric_core/tree/TBendall/HeightW0) | False |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 372\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel\r\n interface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 229, "repository": "MetOffice/lfric_core", "title": "Allow computation and storage of height at W0", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/229"}, "id": "PVTI_lADOAGrG5M4A_OAXzgj9iHk", "labels": ["enhancement", "Linked Apps", "cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["jameskent-metoffice", "MatthewHambley"], "sciTech Review": "jameskent-metoffice", "status": "Code Review", "title": "Allow computation and storage of height at W0"}, {"assignees": ["t00sa"], "code Review": "r-sharp", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @james-bruten-mo\r\nCode Reviewer: @r-sharp \r\n\r\n\r\nThis is based on the changes in trac ticket [#779](https://code.metoffice.gov.uk/trac/lfric_apps/ticket/779). It also enables github personal access tokens by default on monsoon and defines an additional EX1A_WEIGHTS group to prevent undefined parent errors when running the ex1a group on monsoon.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\nTest suite also run on the monsoon 3 partition. Build tasks passed as expected, as did a number of model runs. Some test runs failed due to known problems with missing files in `$BIG_DATA_DIR`.\r\n\r\n### trac.log\r\n\r\n# Test Suite Results - lfric_apps - monsoon-branch/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [monsoon-branch/run1](https://cylchub/services/cylc-review/cycles/sam.clarke/?suite=monsoon-branch%2Frun1) |\r\n| Suite User | sam.clarke |\r\n| Workflow Start | 2026-01-20T14:32:41 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [t00sa/lfric_apps@monsoon3-support](https://github.com/t00sa/lfric_apps/tree/monsoon3-support) | False |\r\n| lfric_core | [MetOffice/lfric_core@2025.12.1](https://github.com/MetOffice/lfric_core/tree/2025.12.1) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 1106\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 166, "repository": "MetOffice/lfric_apps", "title": "Add support for monsoon 3", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/166"}, "id": "PVTI_lADOAGrG5M4A_OAXzgj9nCo", "labels": ["cla-signed"], "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["james-bruten-mo"], "sciTech Review": "james-bruten-mo", "status": "Changes Requested", "title": "Add support for monsoon 3"}, {"assignees": ["EdHone"], "code Review": "mo-lucy-gordon", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @harry-shepherd \r\nCode Reviewer: @mo-lucy-gordon \r\n\r\n\r\n\r\n\r\n\r\nThis PR enables the handling of cyclic data files(files which we start reading again from the beginning once we reach the end) by the new lfric-xios temporal controller. The contents of this PR are:\r\n- a simple switch within the source code to enable reading cyclic data\r\n- new functionality to perform an additional \"initial\" read of data where necessary (when our first model step is not perfectly aligned with a file datapoint)\r\n - two new integration tests (`NonSync`) which exercise this functionality\r\n- several integrations tests which exercise the reading of cyclic data\r\n- new test capability to generate plots to check the validity of the tests\r\n\r\n\r\n\r\n\r\n- closes #230\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite\r\n using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (e.g. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (e.g. system\r\n tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource\r\n and have been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\nSome plots from the LFRic-XIOS integration tests which show that the data is being correctly digested\r\n\"LfricXiosFullCyclicTest\"\r\n\"LfricXiosNonCyclicNonSyncTest\"\r\n\r\n\r\n\r\n\r\n### trac.log\r\n\r\n# Test Suite Results - lfric_core - lfric_core-230-cyclic-read/run4\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [lfric_core-230-cyclic-read/run4](https://cylchub/services/cylc-review/cycles/edward.hone/?suite=lfric_core-230-cyclic-read%2Frun4) |\r\n| Suite User | edward.hone |\r\n| Workflow Start | 2026-01-26T13:26:17 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| lfric_core | [EdHone/lfric_core@230-cyclic-read](https://github.com/EdHone/lfric_core/tree/230-cyclic-read) | False |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 372\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel\r\n interface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 231, "repository": "MetOffice/lfric_core", "title": "Enable reading for cyclic data files using temporal controller", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/231"}, "id": "PVTI_lADOAGrG5M4A_OAXzgj-OEc", "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["harry-shepherd"], "sciTech Review": "harry-shepherd", "status": "Code Review", "title": "Enable reading for cyclic data files using temporal controller"}, {"assignees": ["james-bruten-mo"], "code Review": "yaswant", "content": {"body": "Sorry, got the logic around when labels should/shouldn't be added slightly wrong in the last PR. This can be seen in MetOffice/lfric_apps#166 which should have a `cla-signed` label. This should fix that.", "number": 56, "repository": "MetOffice/growss", "title": "Fix labelling logic", "type": "PullRequest", "url": "https://github.com/MetOffice/growss/pull/56"}, "id": "PVTI_lADOAGrG5M4A_OAXzgj_mJ8", "labels": ["bug"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/growss", "reviewers": ["yaswant"], "status": "Done", "title": "Fix labelling logic"}, {"assignees": ["EdHone"], "code Review": "mo-lucy-gordon", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @andrewcoughtrie \r\nCode Reviewer: @mo-lucy-gordon \r\n\r\n\r\n\r\n\r\n\r\nThis change introduces a flexible benchmarking configuration for the IO_Demo app. The new functionality enables a user to specify a number of fields to write, along with a number of seconds to wait during a step to mimic simulation time. This simple configuration should enable us to exercise the LFRic I/O capability for a number of different use-cases, including writing data at scale.\r\nThe changes include:\r\n- source changes in `io_demo` to enable new benchmark capability\r\n- changes to build the app which enable the use of the `sleep()` intrinsic for all compilers\r\n- changes to `io_demo` metadata which allow the app to be controlled a bit more intuitively\r\n- tweaks to the `io_demo` algorithm layer to enable it to be stable at scale\r\n- tweaks to `launch-exe` to enable running with XIOS servers in the lfric_core rose-stem\r\n- new rose-stem tests, along with a new `io_demo_benchmark` group which runs at large-ish scale (C224)\r\n\r\n\r\n\r\n\r\n\r\n- closes #216\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite\r\n using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (e.g. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (e.g. system\r\n tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource\r\n and have been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n# Test Suite Results - lfric_core - lfric_core-216-iodemo-bench-vernier/run7\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [lfric_core-216-iodemo-bench-vernier/run7](https://cylchub/services/cylc-review/cycles/edward.hone/?suite=lfric_core-216-iodemo-bench-vernier%2Frun7) |\r\n| Suite User | edward.hone |\r\n| Workflow Start | 2026-01-21T10:28:40 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| lfric_core | [EdHone/lfric_core@216-iodemo-bench-vernier](https://github.com/EdHone/lfric_core/tree/216-iodemo-bench-vernier) | False |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 377\r\n\r\n\r\n# Test Suite Results - lfric_core - lfric_core-216-iodemo-bench-vernier/run6\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [lfric_core-216-iodemo-bench-vernier/run6](https://cylchub/services/cylc-review/cycles/edward.hone/?suite=lfric_core-216-iodemo-bench-vernier%2Frun6) |\r\n| Suite User | edward.hone |\r\n| Workflow Start | 2026-01-21T10:17:45 |\r\n| Groups Run | io_demo_benchmark |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| lfric_core | [EdHone/lfric_core@216-iodemo-bench-vernier](https://github.com/EdHone/lfric_core/tree/216-iodemo-bench-vernier) | False |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 10\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel\r\n interface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 232, "repository": "MetOffice/lfric_core", "title": "IO_Demo benchmarking configuration", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/232"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkAIYs", "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["MatthewHambley", "stevemullerworth", "andrewcoughtrie", "mo-lucy-gordon"], "sciTech Review": "andrewcoughtrie", "status": "Code Review", "title": "IO_Demo benchmarking configuration"}, {"assignees": ["ppharris"], "code Review": "james-bruten-mo", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @james-bruten-mo \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n- fixes #24 \r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] **N/A** If editing `rose-meta/jules-shared` then have you supplied a linked UM PR?\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the JULES rose-stem suite\r\n- [x] **N/A** If shared files have been modified, I have run the UM and LFRic Apps rose\r\n stem suites\r\n- [x] **N/A** If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [x] **N/A** I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\nI've run the Rose stem tests at `SITE=cehwl1`, which includes the newly running `rivers-only` tasks, and `SITE=meto`. Both `trac.log` files are pasted below.\r\n\r\n\r\n\r\n# Test Suite Results - jules - vn8.0_stem/run2 - SITE = cehwl1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [vn8.0_stem/run2](https://cylchub/services/cylc-review/cycles/ppha/?suite=vn8.0_stem%2Frun2) |\r\n| Suite User | ppha |\r\n| Workflow Start | 2026-01-21T13:22:40 |\r\n| Groups Run | all |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| jules | [ppharris/jules@cehwl_fix_rivers](https://github.com/ppharris/jules/tree/cehwl_fix_rivers) | False |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 210\r\n\r\n# Test Suite Results - jules - vn8.0_stem/run3 - SITE = meto\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [vn8.0_stem/run3](https://cylchub/services/cylc-review/cycles/philip.harris/?suite=vn8.0_stem%2Frun3) |\r\n| Suite User | philip.harris |\r\n| Workflow Start | 2026-01-21T14:36:43 |\r\n| Groups Run | all |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| jules | [ppharris/jules@cehwl_fix_rivers](https://github.com/ppharris/jules/tree/cehwl_fix_rivers) | False |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 667\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] **N/A** Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] **N/A** Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## Approvals\r\n\r\nPlease request all relevant approvals. See the CodeOwners.txt file for section\r\nowners.\r\n\r\n### Technical\r\n\r\n- [ ] JULES Code Owner\r\n- [ ] OpenMP\r\n- [x] River Routing\r\n- [ ] Rose Stem\r\n- [ ] Rose Metadata\r\n- [ ] Upgrade Macros\r\n\r\n### Scientific\r\n\r\n- [ ] Surface\r\n- [ ] Hydrology\r\n- [ ] Vegetation\r\n- [ ] Veg3 RED Demography\r\n- [ ] Biogechemistry\r\n- [ ] Biogenic fluxes\r\n- [ ] Fire\r\n- [ ] Lakes\r\n- [ ] Evaluation\r\n- [ ] Imogen\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 35, "repository": "MetOffice/jules", "title": "Rose stem fixes for cehwl site", "type": "PullRequest", "url": "https://github.com/MetOffice/jules/pull/35"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkAlGo", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/jules", "reviewers": ["james-bruten-mo"], "status": "Done", "title": "Rose stem fixes for cehwl site"}, {"assignees": ["jameskent-metoffice"], "code Review": "cameronbateman-mo", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @thomasmelvin\r\nCode Reviewer: @cameronbateman-mo \r\n\r\n\r\n\r\nThis ticket fixes a potential stability issue, where departure points can't be found for consistent tracers with FFSL transport schemes. This issue is very rare, and has only been observed once when running Climate Case Studies with very large time steps. The fix is to revert to advective form (and thus break conservation) for the tracers on this time step only. \r\n\r\nI've put this on a switch as some users might desire conservation above all else. None of the tests in the test suites see this stability issue, so there are no kgo changes whether the switch is on or off. (I've tested it worked on the Climate Case Study that failed).\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [ ] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\nI have run the gungho_model and lfric_atm suites with the switch set to true. As expected nothing changed and all the kgos passed. I have left the switch set to false. \r\n\r\n### trac.log\r\n\r\n# Test Suite Results - lfric_apps - advective_tracer_stability_test/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [advective_tracer_stability_test/run1](https://cylchub/services/cylc-review/cycles/james.kent/?suite=advective_tracer_stability_test%2Frun1) |\r\n| Suite User | james.kent |\r\n| Workflow Start | 2026-01-21T12:45:35 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [jameskent-metoffice/lfric_apps@advective_tracer_stability_test](https://github.com/jameskent-metoffice/lfric_apps/tree/advective_tracer_stability_test) | False |\r\n| lfric_core | [MetOffice/lfric_core@2025.12.1](https://github.com/MetOffice/lfric_core/tree/2025.12.1) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 1106\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 171, "repository": "MetOffice/lfric_apps", "title": "Added Stability with Advective Tracers", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/171"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkApM8", "labels": ["macro", "cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["thomasmelvin", "cameronbateman-mo", "ss421", "matthewrmshin"], "sciTech Review": "thomasmelvin", "status": "Approved", "title": "Added Stability with Advective Tracers"}, {"assignees": ["mike-hobson", "mo-marqh"], "code Review": "EdHone", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @mike-hobson \r\nCode Reviewer: @EdHone \r\n\r\n\r\n\r\n\r\n\r\nThis change re-introduces lfric_core calipers that were used for the 2025 performance analysis.\r\n\r\nit is a stand alone change.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's\r\n [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite\r\n using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system\r\n tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource\r\n and have been allocated to an appropriate testing group (i.e. the\r\n developer tests are for jobs which use a small amount of compute resource\r\n and complete in a matter of minutes)\r\n\r\n\r\n\r\n`group=all` tests run\r\n\r\n### trac.log\r\n\r\n# Test Suite Results - lfric_core - calipersKPI25-core/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [calipersKPI25-core/run1](https://cylchub/services/cylc-review/cycles/mark.hedley/?suite=calipersKPI25-core%2Frun1) |\r\n| Suite User | mark.hedley |\r\n| Workflow Start | 2026-01-21T11:44:02 |\r\n| Groups Run | all |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| lfric_core | [mo-marqh/lfric_core@calipersKPI25-core](https://github.com/mo-marqh/lfric_core/tree/calipersKPI25-core) | False |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 372\r\n\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel\r\n interface, optimisation scripts, LFRic data structure code) then please\r\n contact the\r\n [tooscollabdevteam@metoffice.gov.uk](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [x] Documentation is complete and accurate\r\n- [x] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n", "number": 233, "repository": "MetOffice/lfric_core", "title": "Verniered Calipers performance 25 core", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/233"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkArdU", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["mike-hobson", "MatthewHambley", "EdHone", "mike-hobson", "EdHone"], "sciTech Review": "mike-hobson", "status": "Done", "title": "Verniered Calipers performance 25 core"}, {"assignees": ["cjohnson-pi"], "code Review": "mo-marqh", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @tommbendall \r\nCode Reviewer: @mo-marqh \r\n\r\n\r\n\r\n\r\n\r\nhttps://github.com/MetOffice/lfric_apps/issues/115\r\n\r\n* Add a new nwp_gal9 configuration in the linear integration tests (to match the default configuration for the linear_model). This includes using data read from file to initialise the tests.\r\n* Update the integration tests linear drivers to match the linear model driver (this required a safety switch added to gungho_step)\r\n* Reduce the number of tests for the semi-implicit and runge-kutta configs (as nwp_gal9 is running most tests)\r\n* Update the plot_convergence.sh script (this is not part of the test suite but is useful to have) - this runs the integration tests multiple times and creates plots of the data.\r\n* Improve how the convergence rate in the integration tests is tested.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### Plot convergence results\r\nhttps://github.com/MetOffice/lfric_apps/issues/115#issuecomment-3785320045\r\n\r\n### trac.log\r\n\r\n\r\n# Test Suite Results - lfric_apps - update_integration_test/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [update_integration_test/run1](https://cylchub/services/cylc-review/cycles/christine.johnson/?suite=update_integration_test%2Frun1) |\r\n| Suite User | christine.johnson |\r\n| Workflow Start | 2026-01-28T15:09:36 |\r\n| Groups Run | suite_default |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [cjohnson-pi/lfric_apps@update_integration_t](https://github.com/cjohnson-pi/lfric_apps/tree/update_integration_t) | False |\r\n| lfric_core | [MetOffice/lfric_core@aa32824](https://github.com/MetOffice/lfric_core/tree/aa32824) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 1106\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 170, "repository": "MetOffice/lfric_apps", "title": "Update linear integration tests", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/170"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkAyUQ", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["tommbendall", "mo-marqh", "ss421", "matthewrmshin"], "sciTech Review": "tommbendall", "status": "Code Review", "title": "Update linear integration tests"}, {"assignees": ["james-bruten-mo"], "code Review": "yaswant", "content": {"body": "Adds `continue-on-error: true` to some of the steps in the project tracker workflow, to avoid failures where a user can't be assigned/review", "number": 57, "repository": "MetOffice/growss", "title": "Ignore unable assign", "type": "PullRequest", "url": "https://github.com/MetOffice/growss/pull/57"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkBdlo", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/growss", "reviewers": ["yaswant", "yaswant"], "status": "Done", "title": "Ignore unable assign"}, {"assignees": ["bblay-mo"], "content": {"body": "# PR Summary\r\nAdd Section 20 diagnostic _icao heights_, as described in https://github.com/MetOffice/Section20/issues/24.\r\n\r\nTodo:\r\n - [ ] Seek help on making `\"convection__pres_cv_base\"` and base available to the algo.\r\n - [ ] Should we add icao could _depth_ to this PR too? It's in the previous ticket for us to copy.\r\n - [ ] **Wait for Paul to make suites work with lfric apps vn3.0/GitHub**\r\n - [ ] Need to confirm we don't need to iterate DOFs.\r\n - [ ] Rebase once #98, from which this was branched, has been merged.\r\n - Until then, this PR will also show the changes from #98.\r\n - We can see just the changes _ontop_ here (needs fork invite): https://github.com/bblay-mo/lfric_apps/compare/diags_geopot_thickness...bblay-mo:lfric_apps:diags_icao_heights?expand=1\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid understanding and enhance the readability of the code\r\n- [ ] My changes generate no new warnings\r\n- [ ] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 169, "repository": "MetOffice/lfric_apps", "title": "S20 Diags: icao heights", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/169"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkBtFs", "labels": ["cla-signed"], "repository": "https://github.com/MetOffice/lfric_apps", "status": "In Progress", "title": "S20 Diags: icao heights"}, {"assignees": ["mo-jmanners"], "code Review": "t00sa", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @Petzi1\r\nCode Reviewer: @t00sa \r\n\r\n\r\n\r\n\r\n\r\nHITRAN (high-resolution transmission molecular absorption database) 2024 has just been released with the addition of new species and small changes to the Total Internal Partition Sums for existing species. The constants used by Socrates are updated to match the new data from here:\r\n\r\nhttps://hitran.org/docs/iso-meta/\r\n\r\n\r\n\r\n\r\ncloses #13 \r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] If shared files have been modified, I have run the UM and LFRic Apps rose\r\n stem suites\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\n## Socrates quick_tests\r\n\r\n```\r\nTesting code compiled in /home/users/james.manners/git/socrates_admin/bin\r\n---\r\nTesting simple calls to the runes interface:\r\nFiles output.txt and gfortran_8_1_0.txt differ\r\nMatched ifort 19.0.0 output\r\nOK\r\n---\r\nTesting the runes_nc driver using LFRic diagnostic input:\r\nMatched SW output\r\nMatched LW output\r\nOK\r\n---\r\nTesting raw_input to convert column data into input files:\r\nOK\r\n---\r\nTesting Cl_run_cdl for ICRCCM case 27 (LW) on AER profiles:\r\nOK\r\n---\r\nTesting Cl_run_cdf on multiple profiles:\r\nOK\r\n---\r\nTest Cl_run_cdf for CIRC case 6\r\n(HadGEM, GA7, SES and 300/260 band spectral files):\r\nOK\r\n---\r\nTesting pseudo-spherical geometry code:\r\nCalculating zenith angles: 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98\r\nOK\r\n---\r\nTesting photolysis and non-LTE code:\r\nMapping sub-bands to channels.\r\nFiles cdl_trop_xsw_photol_g1_13.hrts and gfortran_trop_xsw_photol_g1_13.hrts differ\r\nFiles cdl_trop_xsw_photol_sg_g1_13.hrts and gfortran_trop_xsw_photol_sg_g1_13.hrts differ\r\nFiles cdl_trop_xsw_photol_sg_g3_no.ph_rate_8 and gfortran_trop_xsw_photol_sg_g3_no.ph_rate_8 differ\r\nFiles cdl_trop_xsw_photol_sg_g4_no.ph_rate_8 and gfortran_trop_xsw_photol_sg_g4_no.ph_rate_8 differ\r\nFiles cdl_trop_xsw_photol_ch.ph_rate_2 and gfortran_trop_xsw_photol_ch.ph_rate_2 differ\r\nFiles cdl_trop_320_sg_ch.ph_rate_2 and gfortran_trop_320_sg_ch.ph_rate_2 differ\r\nMatched ifort output\r\nOK\r\n---\r\nTest McICA code (create mcica_data file and run on CRM profile):\r\nOK\r\n---\r\nTesting creation of aerosol properties for a spectral file:\r\nRunning scatter_90...\r\nRunning scatter_average_90...\r\nRunning prep_spec...\r\nFiles sp_with_aer and sp_gfortran12 differ\r\nMatched ifort19 output\r\nOK\r\n---\r\nTesting generating and running with prescribed optical properties:\r\nRunning raw_input...\r\nRunning Cscatter... please wait...\r\nRunning Cscatter... please wait...\r\nRunning Cscatter_average...\r\nRunning Cscatter_average...\r\nRunning prep_opt_profile...\r\nRunning Cl_run_cdl...\r\nAll done.\r\nOK\r\n---\r\nTesting Crun_mono to calculate radiances:\r\nFiles rc3_ref.radn and rc3.radn differ\r\nMatched ifort19 output\r\nOK\r\n---\r\nTesting Ccorr_k to generate correlated-k coefficients:\r\nFiles sp_lw_300_gfortran12 and sp_lw_300_dev differ\r\nMatched ifort19 output\r\nOK\r\n---\r\nTesting flexchem chemistry:\r\nFiles output.txt and kgo_output.txt differ\r\nMatched ifort19 output\r\nOK\r\n---\r\nTesting CDL scripts:\r\nOK\r\n---\r\nAll passed.\r\n```\r\n\r\n## UM trac.log\r\n# Test Suite Results - um - um_socrates13_tips/run2\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [um_socrates13_tips/run2](https://cylchub/services/cylc-review/cycles/james.manners/?suite=um_socrates13_tips%2Frun2) |\r\n| Suite User | james.manners |\r\n| Workflow Start | 2026-01-22T16:30:38 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| mule | [MetOffice/mule@2025.10.1](https://github.com/MetOffice/mule/tree/2025.10.1) | True |\r\n| shumlib | [MetOffice/shumlib@2025.10.1](https://github.com/MetOffice/shumlib/tree/2025.10.1) | True |\r\n| socrates | [mo-jmanners/socrates@13_tips](https://github.com/mo-jmanners/socrates/tree/13_tips) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n| um | [mo-jmanners/um@13d7d55](https://github.com/mo-jmanners/um/tree/13d7d55) | True |\r\n| um_aux | [MetOffice/um_aux@2025.12.1](https://github.com/MetOffice/um_aux/tree/2025.12.1) | True |\r\n| um_meta | [MetOffice/um_meta@2025.12.1](https://github.com/MetOffice/um_meta/tree/2025.12.1) | True |\r\n\r\n## Approvals\r\n### Code Owners\r\n* No UM Code Owners Required\r\n### Config Owners\r\nNo UM Config Owners Required\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 880\r\n\r\n\r\n## LFRic Apps trac.log\r\n# Test Suite Results - lfric_apps - lfric_apps_socrates13_tips/run2\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [lfric_apps_socrates13_tips/run2](https://cylchub/services/cylc-review/cycles/james.manners/?suite=lfric_apps_socrates13_tips%2Frun2) |\r\n| Suite User | james.manners |\r\n| Workflow Start | 2026-01-22T16:11:47 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [mo-jmanners/lfric_apps@144de38](https://github.com/mo-jmanners/lfric_apps/tree/144de38) | True |\r\n| lfric_core | [MetOffice/lfric_core@5d4d72f](https://github.com/MetOffice/lfric_core/tree/5d4d72f) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [mo-jmanners/socrates@13_tips](https://github.com/mo-jmanners/socrates/tree/13_tips) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 1106\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [x] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [x] Documentation is complete and accurate\r\n- [x] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n", "number": 14, "repository": "MetOffice/socrates", "title": "Update Total Internal Partition Sums for HITRAN2024", "type": "PullRequest", "url": "https://github.com/MetOffice/socrates/pull/14"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkBvcI", "labels": ["enhancement", "KGO"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/socrates", "reviewers": ["Petzi1", "t00sa"], "status": "Done", "title": "Update Total Internal Partition Sums for HITRAN2024"}, {"assignees": ["james-bruten-mo"], "code Review": "jennyhickson", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @jennyhickson \r\n\r\n\r\n\r\nUpdate the jedi code owners and fix a typo in the PR template\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid understanding and enhance the readability of the code\r\n- [ ] My changes generate no new warnings\r\n- [ ] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 173, "repository": "MetOffice/lfric_apps", "title": "update jedi owners", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/173"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkB2Vo", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["jennyhickson", "jennyhickson"], "status": "Done", "title": "update jedi owners"}, {"assignees": ["tommbendall"], "code Review": "allynt", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @jameskent-metoffice \r\nCode Reviewer: @allynt \r\n\r\n\r\n\r\n\r\n\r\nOur current infrastructure sets a single maximum halo depth for all meshes, irrespective of their relative resolution. This isn't is necessary and doesn't match the use of the meshes. In typical atmospheric configurations, the finest mesh needs a depth appropriate for the transport scheme, which is set by the expected maximum Courant number (e.g. 10). In contrast, the coarser meshes used for multigrid generally only need a halo depth of 2, and yet we still set their depth to 10. For these multigrid meshes, this means the halos can end up extending beyond the adjacent partitions (unnecessarily!)\r\n\r\nThis is a linked PR, which addresses this by allowing different halo depths to be set for different meshes. The change is to make the driver's `stencil_depth` argument an array of `stencil_depths`, corresponding to the different meshes.\r\n\r\n**Linked to**: MetOffice/lfric_apps#174\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n# Test Suite Results - lfric_core - multi_stencil_depths/run3\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [multi_stencil_depths/run3](https://cylchub/services/cylc-review/cycles/thomas.bendall/?suite=multi_stencil_depths%2Frun3) |\r\n| Suite User | thomas.bendall |\r\n| Workflow Start | 2026-01-22T18:09:39 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| lfric_core | [tommbendall/lfric_core@TBendall/MultiStencilDepths](https://github.com/tommbendall/lfric_core/tree/TBendall/MultiStencilDepths) | False |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 372\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](mailto:ToolsCollabDevTeam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 237, "repository": "MetOffice/lfric_core", "title": "Allow different meshes to have different maximum halo depths", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/237"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkEdBA", "labels": ["enhancement", "Linked Apps", "cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["jameskent-metoffice", "mike-hobson", "stevemullerworth", "andrewcoughtrie", "mo-rickywong", "EdHone", "allynt"], "sciTech Review": "jameskent-metoffice", "status": "Code Review", "title": "Allow different meshes to have different maximum halo depths"}, {"assignees": ["tommbendall"], "code Review": "allynt", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @jameskent-metoffice \r\nCode Reviewer: @allynt \r\n\r\n\r\n\r\n\r\n\r\nOur current infrastructure sets a single maximum halo depth for all meshes, irrespective of their relative resolution. This isn't is necessary and doesn't match the use of the meshes. In typical atmospheric configurations, the finest mesh needs a depth appropriate for the transport scheme, which is set by the expected maximum Courant number (e.g. 10). In contrast, the coarser meshes used for multigrid generally only need a halo depth of 2, and yet we still set their depth to 10. For these multigrid meshes, this means the halos can end up extending beyond the adjacent partitions (unnecessarily!)\r\n\r\nThis is a linked PR, which addresses this by allowing different halo depths to be set for different meshes. The change in this PR is:\r\n- make `get_required_stencil_depth` a subroutine, returning the value for a particular mesh\r\n- removing `get_required_stencil_depth` and replacing it with `mesh%get_halo_depth()` in appropriate science code\r\n- picking up the change in API to the LFRic-Core `init_mesh` routine, so that `stencil_depth` is a rank-1 array (with different values passed for different meshes)\r\n\r\nThis changes the KGO of the Schar mountain test. This is because this test has a width in the y-direction of 8 cells, but uses a maximum halo depth of 4 -- meaning that the furthest cell in both positive and negative directions is the same. This triggers issue #175. A separate PR should change those vertical slice tests to avoid this issue.\r\n\r\n**Linked to**: MetOffice/lfric_core#237\r\n\r\nPlot of test with changed KGO:\r\n\"schar_stencil_depths\"\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n# Test Suite Results - lfric_apps - stencil_depths/run8\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [stencil_depths/run8](https://cylchub/services/cylc-review/cycles/thomas.bendall/?suite=stencil_depths%2Frun8) |\r\n| Suite User | thomas.bendall |\r\n| Workflow Start | 2026-01-22T21:03:01 |\r\n| Groups Run | all |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [tommbendall/lfric_apps@TBendall/StencilDepths](https://github.com/tommbendall/lfric_apps/tree/TBendall/StencilDepths) | False |\r\n| lfric_core | [tommbendall/lfric_core@TBendall/MultiStencilDepths](https://github.com/tommbendall/lfric_core/tree/TBendall/MultiStencilDepths) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 1456\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 174, "repository": "MetOffice/lfric_apps", "title": "Allow different meshes to have different maximum halo depths", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/174"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkEd7c", "labels": ["enhancement", "Linked Core", "KGO", "cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["jameskent-metoffice", "allynt"], "sciTech Review": "jameskent-metoffice", "status": "Code Review", "title": "Allow different meshes to have different maximum halo depths"}, {"assignees": ["tommbendall"], "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @thomasmelvin \r\nCode Reviewer: \r\n\r\n\r\n\r\n\r\n\r\nThis adds two new options for the function spaces used by the coordinate fields:\r\n1. The coordinate fields can be in a Wtheta space (discontinuous in the horizontal, continuous in the vertical)\r\n2. The coordinate space used by multigrid meshes is not tied to the coordinate space used by the prime mesh\r\n\r\nWhen `Wtheta` is used as the function space, the vertical coordinate order is kept as 0, making the coordinates linear in the vertical. These options are an optimisation to the coordinate fields, which will facilitate us moving to `coord_order=2` which gives a significant boost in NWP score:\r\n1. using a `Wtheta` space allows us to have fewer DoFs per cell (see below)\r\n2. keeping a lower coordinate order for multigrid meshes has minimal scientific impact but is a small optimisation, and avoids the bug reported in #239 \r\n\r\n**Linked to** MetOffice/lfric_apps#179\r\n\r\n**Test branch**: the action of the upgrade macro can be seen on my test branch here: https://github.com/tommbendall/lfric_core/pull/2/changes\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [ ] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n# Test Suite Results - lfric_core - test_coord_space/run4\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [test_coord_space/run4](https://cylchub/services/cylc-review/cycles/thomas.bendall/?suite=test_coord_space%2Frun4) |\r\n| Suite User | thomas.bendall |\r\n| Workflow Start | 2026-01-23T16:18:08 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| lfric_core | [tommbendall/lfric_core@TBendall/TestCoordSpace](https://github.com/tommbendall/lfric_core/tree/TBendall/TestCoordSpace) | False |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 372\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](mailto:ToolsCollabDevTeam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 238, "repository": "MetOffice/lfric_core", "title": "New function space options for coordinate fields", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/238"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkFJIA", "labels": ["enhancement", "Linked Apps", "macro", "cla-modified"], "milestone": {"description": "Code Review deadline is 29th May 2026 (SciTech review to be completed by this date)", "dueOn": "2026-07-01T00:00:00Z", "title": "Summer 2026"}, "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["thomasmelvin"], "sciTech Review": "thomasmelvin", "status": "Code Review", "title": "New function space options for coordinate fields"}, {"assignees": ["Pierre-siddall"], "content": {"body": "# PR Summary\r\n\r\nCode Reviewer: \r\n\r\n\r\n\r\n\r\n\r\nThis PR aims to add a ruff linting action to the MOCI CI/CD pipeline and convert the current pylint.rc file to the ruff equivalent using a ruff.toml file \r\n\r\n\r\n\r\n\r\n\r\ncloses #15\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's style guidelines\r\n- [ ] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the Moci rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 20, "repository": "MetOffice/moci", "title": "Add ruff linting", "type": "PullRequest", "url": "https://github.com/MetOffice/moci/pull/20"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkFLcE", "repository": "https://github.com/MetOffice/moci", "status": "In Progress", "title": "Add ruff linting"}, {"assignees": ["james-bruten-mo"], "content": {"body": "Fix incorrect merge in project action", "number": 58, "repository": "MetOffice/growss", "title": "fix project action", "type": "PullRequest", "url": "https://github.com/MetOffice/growss/pull/58"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkFS00", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/growss", "reviewers": ["yaswant"], "status": "Done", "title": "fix project action"}, {"assignees": ["mo-marqh"], "code Review": "oakleybrunt", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @tommbendall \r\nCode Reviewer: @oakleybrunt \r\n\r\n\r\n\r\n\r\n\r\nComprehensive timing caliper location review.\r\n\r\nThis is a rework of work done for performance analyses in late 2025, migrating everything caliper related from:\r\nhttps://code.metoffice.gov.uk/trac/lfric_apps/browser/main/branches/pkg/Share/r15393_kpi_benchmark\r\nessentially from this commit:\r\n[https://code.metoffice.gov.uk/trac/lfric_apps/changeset?reponame=&new=15498%40main%2Fbranches%2\u2026](https://code.metoffice.gov.uk/trac/lfric_apps/changeset?reponame=&new=15498%40main%2Fbranches%2Fpkg%2FShare%2Fr15393_kpi_benchmark&old=15460%40main%2Fbranches%2Fpkg%2FShare%2Fr15393_kpi_benchmark)\r\n\r\nbut updated from source migration and adoption of `timing` wrapper from #80 \r\n\r\n\r\n\r\n\r\n\r\n- is related to https://github.com/MetOffice/lfric_core/pull/233 (but these are not linked, each is stand-alone)\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n# Test Suite Results - lfric_apps - calipersPerformance25/run6\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [calipersPerformance25/run6](https://cylchub/services/cylc-review/cycles/mark.hedley/?suite=calipersPerformance25%2Frun6) |\r\n| Suite User | mark.hedley |\r\n| Workflow Start | 2026-01-22T19:51:59 |\r\n| Groups Run | all |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [mo-marqh/lfric_apps@calipersPerformance25](https://github.com/mo-marqh/lfric_apps/tree/calipersPerformance25) | False |\r\n| lfric_core | [MetOffice/lfric_core@aa32824](https://github.com/MetOffice/lfric_core/tree/aa32824) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 1456\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [x] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [x] Documentation is complete and accurate\r\n- [x] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n", "number": 176, "repository": "MetOffice/lfric_apps", "title": "Calipers performance25", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/176"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkFm48", "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["tommbendall", "oakleybrunt", "tommbendall"], "sciTech Review": "tommbendall", "status": "Approved", "title": "Calipers performance25"}, {"assignees": ["thomasmelvin"], "code Review": "mo-rickywong", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @tommbendall \r\nCode Reviewer: @mo-rickywong \r\n\r\n\r\n\r\n\r\n\r\nAdd in a number of solver optimisations.\r\nThe principle performance improvement in this pull request is to split the application of the mixed operator into two seperate new kernels. \r\n\r\n1. science/gungho/source/kernel/solver/apply_mixed_u_operator_kernel_mod.F90 computes the lhs for the horizontal wind components. This is done in the broken W2h space so that a write access can be used, avoiding any colouring or halo swaps. After this call the broken W2h lhs needs to be assembled in the continuous W2h space (reapplying a single halo swap)\r\n2. science/gungho/source/kernel/solver/apply_mixed_wp_operator_kernel_mod.F90 computes the lhs for the vertical wind and pressure components. As these fields lie on horizontally discontinuous spaces there is no colouring or halo exchanges needed.\r\n\r\nThese changes result in a performance improvement for 2 main reasons\r\n1. Better use of memory by splitting the single large kernel into two kernels and (presumably) getting better cache usage\r\n2. Reduction in the number of halo swaps from 3 (for the horizontal wind, vertical wind & pressure) into 1 (for the broken horizontal wind lhs). It appears one of these saved halo exchanges is then reinstated elsewhere in the code, likely when the pressure lhs or vertical wind lhs is needed in the halo region in a seperate kernel.\r\n\r\nThe C224 & C896 lfric atm tests in the test suite were run with these changes giving the following solver times\r\n\r\n| Code | C224 | C896 |\r\n|--------|--------|--------|\r\n| Trunk | 50.71 | 114.57 |\r\n| Branch | 41.59 | 98.69 |\r\n\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [X] I have performed a self-review of my own code\r\n- [X] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [X] Comments have been included that aid understanding and enhance the readability of the code\r\n- [X] My changes generate no new warnings\r\n- [ ] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [X] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [X] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [X] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [X] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\nThese results are from before the KGO update. The failure in the lfric_inputs appears not to be due to this pull request as none of the code changes should be used and is likely one of the occasional lfric_inputs failures that we see\r\n\r\n# Test Suite Results - lfric_apps - solver_improvements/run6\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [solver_improvements/run6](https://cylchub/services/cylc-review/cycles/thomas.melvin/?suite=solver_improvements%2Frun6) |\r\n| Suite User | thomas.melvin |\r\n| Workflow Start | 2026-01-22T11:45:40 |\r\n| Groups Run | all |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [thomasmelvin/lfric_apps@solver_improvements](https://github.com/thomasmelvin/lfric_apps/tree/solver_improvements) | False |\r\n| lfric_core | [MetOffice/lfric_core@2025.12.1](https://github.com/MetOffice/lfric_core/tree/2025.12.1) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n
\r\n:x: failed tasks - 150\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| check_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_azspice_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_agnesi_hyd_cart-BiP120x8-2000x2000_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_baroclinic-C24_MG_azspice_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_baroclinic-C24_MG_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_baroclinic-alt1-C24s_MG_azspice_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_baroclinic-alt1-C24s_MG_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_baroclinic-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_baroclinic-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_baroclinic-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | failed |\r\n| check_gungho_model_baroclinic-alt3-C24_MG_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_baroclinic-pert-C24_MG_azspice_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_baroclinic-pert-C24_MG_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_azspice_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_bryan_fritsch-dry-BiP200x10-100x100_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_dcmip200-C24_MG_azspice_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_dcmip200-C24_MG_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_dcmip200_realorog-C48_MG_azspice_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_dcmip200_realorog-C48_MG_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_dcmip301-C24_MG_azspice_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_dcmip301-C24_MG_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_deep-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_deep-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_earth-like-C24_MG_azspice_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_earth-like-C24_MG_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_held-suarez-C24_MG_azspice_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_held-suarez-C24_MG_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_lfric-real-domain-C48_MG_azspice_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_lfric-real-domain-C48_MG_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_robert-moist-lam-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_robert-moist-lam-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_robert-moist-smag-BiP100x8-10x10_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_sbr-C24_MG_azspice_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_sbr-C24_MG_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_sbr-alt2-C24_MG_op_azspice_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_sbr-alt2-C24_MG_op_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_sbr-alt3-C24_MG_azspice_gnu_fast-debug-64bit-rtran32 | failed |\r\n| check_gungho_model_sbr-alt3-C24_MG_ex1a_gnu_fast-debug-64bit-rtran32 | failed |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_azspice_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_rotate_azspice_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_sbr_lam-n96_MG_lam_rotate_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_schar_cart-BiP200x8-500x500_azspice_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_schar_cart-BiP200x8-500x500_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_azspice_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_schar_cart-alt2-BiP100x4-1000x1000_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_semi-implicit-for-linear-C12_azspice_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_semi-implicit-for-linear-C12_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_shallow-hot-jupiter-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | failed |\r\n| check_gungho_model_shallow-hot-jupiter-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | failed |\r\n| check_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_azspice_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_skamarock_klemp_gw_p0-BiP300x8-1000x2000_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_straka_200m-BiP256x8-200x200_azspice_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_straka_200m-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_straka_200m-alt1-BiP256x4-200x200_azspice_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_straka_200m-alt1-BiP256x4-200x200_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_azspice_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_straka_200m-alt2-BiP256x16-200x50_op_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_straka_200m-alt3-BiP256x8-200x200_azspice_gnu_fast-debug-64bit-rtran32 | failed |\r\n| check_gungho_model_straka_200m-alt3-BiP256x8-200x200_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_gungho_model_tidally-locked-earth-C24_MG_azspice_gnu_fast-debug-64bit-crun1 | failed |\r\n| check_gungho_model_tidally-locked-earth-C24_MG_ex1a_gnu_fast-debug-64bit-crun1 | failed |\r\n| check_gungho_model_tidally-locked-earth-C24s_rot_MG_azspice_gnu_fast-debug-64bit-crun1 | failed |\r\n| check_gungho_model_tidally-locked-earth-C24s_rot_MG_ex1a_gnu_fast-debug-64bit-crun1 | failed |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_fast-debug-64bit | failed |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_azspice_gnu_full-debug-64bit | failed |\r\n| check_jedi_lfric_tests_forecast_gh-si-for-linear-C12_ex1a_cce_fast-debug-64bit | failed |\r\n| check_jedi_lfric_tests_nwp_gal9-C12_azspice_gnu_fast-debug-64bit | failed |\r\n| check_jedi_lfric_tests_nwp_gal9-C12_ex1a_cce_fast-debug-64bit | failed |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_azspice_gnu_fast-debug-64bit | failed |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_ex1a_cce_fast-debug-64bit | failed |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_op_azspice_gnu_fast-debug-64bit | failed |\r\n| check_jedi_lfric_tests_tlm_forecast_tl_default-C12_op_ex1a_cce_fast-debug-64bit | failed |\r\n| check_lfric_atm_aquaplanet-C12_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_aquaplanet-C12_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_camembert_case3_gj1214b-C12_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_camembert_case3_gj1214b-C12_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_clim_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_clim_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_clim_gal9_1T-C12_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_clim_gal9_1T-C48_MG_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_clim_gal9_2T-C12_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_clim_gal9_2T-C48_MG_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_clim_gal9_4T-C48_MG_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_clim_gal9_chem-C12_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_clim_gal9_chem-C12_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_clim_gal9_chem_1T-C12_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_clim_gal9_chem_2T-C12_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_comp_tran_ref_3d_l120-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_hd209458b-C24_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_hd209458b-C24_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_casim-C12_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_casim-C12_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_coma9-C12_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_coma9-C12_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_comorph_dev-C12_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_comorph_dev-C12_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_comorph_tb-C12_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_gal9-C12_azspice_gnu_fast-debug-64bit-crun1 | failed |\r\n| check_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_gal9-C12_ex1a_cce_fast-debug-64bit-crun1 | failed |\r\n| check_lfric_atm_nwp_gal9-C48_MG_azspice_gnu_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9-C48_MG_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9-pert-C12_azspice_gnu_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9-pert-C12_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_coarse_aero-C48_MG_azspice_gnu_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_coarse_aero-C48_MG_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_coarse_aero_threaded-C48_MG_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_coarse_aero_threaded-C48_MG_ex1a_gnu_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_da-C12_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_gal9_da-C12_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_gal9_debug-C12_azspice_gnu_full-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_debug-C12_ex1a_cce_full-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_debug-C48_MG_azspice_gnu_full-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_debug-C48_MG_ex1a_cce_full-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_eda-C12_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_gal9_eda-C12_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_gal9_eda_jada-C12_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_gal9_eda_jada-C12_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_gal9_mol-C12_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_gal9_mol-C12_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_nwp_gal9_noukca_1T-C12_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_noukca_1T-C48_MG_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_noukca_2T-C12_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_noukca_2T-C48_MG_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_noukca_2T-C48_MG_ex1a_cce_full-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_noukca_4T-C48_MG_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_short-C12_azspice_gnu_fast-debug-32bit | failed |\r\n| check_lfric_atm_nwp_gal9_short-C12_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_ral3-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_ral3-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_ral3_ens-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_ral3_ens-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_ral3_mixmol-seuk_MG_azspice_gnu_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_ral3_mixmol-seuk_MG_ex1a_cce_fast-debug-32bit-crun1 | failed |\r\n| check_lfric_atm_rce-BiP64x64-1500x1500_MG_azspice_gnu_fast-debug-32bit | failed |\r\n| check_lfric_atm_rce-BiP64x64-1500x1500_MG_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_atm_thai_ben1-C48_MG_azspice_gnu_fast-debug-32bit | failed |\r\n| check_lfric_atm_thai_ben1-C48_MG_ex1a_cce_fast-debug-32bit | failed |\r\n| check_lfric_coupled_nwp_gal9-C48_ex1a_cce_fast-debug-64bit | failed |\r\n| check_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | failed |\r\n| check_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | failed |\r\n| check_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | failed |\r\n| check_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | failed |\r\n| check_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | failed |\r\n| rose_ana_lfricinputs_um2lfric-protogal_chem-N48L70_C12L70_azspice_gnu_full-debug-64bit | failed |\r\n
\r\n:white_check_mark: succeeded tasks - 1305\r\n
\r\n:hourglass: waiting tasks - 2\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| housekeep_azspice | waiting |\r\n| housekeep_ex1a | waiting |\r\n
\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [X] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [X] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 177, "repository": "MetOffice/lfric_apps", "title": "Solver improvements", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/177"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkFuds", "labels": ["KGO", "cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["tommbendall", "mo-rickywong"], "sciTech Review": "tommbendall", "status": "Code Review", "title": "Solver improvements"}, {"assignees": ["tommbendall"], "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: \r\n\r\n\r\n\r\n\r\n\r\nThis PR picks up on the new coordinate field namelist options from https://github.com/MetOffice/lfric_core/pull/238.\r\n\r\nTo facilitate coordinate spaces with some level of continuity, the `assign_orography_field` routines have been altered. The coordinate fields are copied so that heights are not adjusted multiple times by different cells.\r\n\r\nThe vast majority of changes involve the addition of the new namelist options into all of the required files.\r\n\r\n**Linked to** MetOffice/lfric_core#238\r\n\r\n**Test branch**: a link to show the action of the upgrade macro and KGOs can be found: https://github.com/tommbendall/lfric_apps/pull/1/changes\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid understanding and enhance the readability of the code\r\n- [ ] My changes generate no new warnings\r\n- [ ] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 179, "repository": "MetOffice/lfric_apps", "title": "New function space options for coordinate fields", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/179"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkGOo4", "labels": ["enhancement", "Linked Core", "KGO", "macro", "cla-signed"], "milestone": {"description": "Code Review deadline is 29th May 2026 (SciTech review to be completed by this date)", "dueOn": "2026-07-01T00:00:00Z", "title": "Summer 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "status": "In Progress", "title": "New function space options for coordinate fields"}, {"content": {"body": "Currently, once the code reviewer requests changes or approves a PR the logic to recognise a trivial PR breaks. Add checks for these states to the workflow. ", "number": 59, "repository": "MetOffice/growss", "title": "Add logic to check CR in progress for trivial review", "type": "PullRequest", "url": "https://github.com/MetOffice/growss/pull/59"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkIlPE", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/growss", "reviewers": ["james-bruten-mo"], "status": "Done", "title": "Add logic to check CR in progress for trivial review"}, {"content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: \r\n\r\n\r\n\r\n\r\n\r\nFrom the issue:\r\n> Following the completion of [ukca:#302](https://code.metoffice.gov.uk/trac/ukca/ticket/302), I spotted a few more things in ASAD that could do with refactoring. These include:\r\n>\r\n> * Drop unused arrays and arguments from previous refactoring work.\r\n> * Use the more accurate array name `permuted_nonzero_map` rather than `nonzero_map_unordered`.\r\n> * Details on LU factorisation.\r\n> * Clarity of comments.\r\n\r\n\r\n\r\n\r\nCloses #17\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the UKCA rose-stem suite\r\n- [ ] If shared files have been modified, I have run the UM and LFRic Apps rose\r\n stem suites\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 18, "repository": "MetOffice/ukca", "title": "Further ASAD refactoring", "type": "PullRequest", "url": "https://github.com/MetOffice/ukca/pull/18"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkIv0I", "labels": ["cla-signed"], "repository": "https://github.com/MetOffice/ukca", "status": "In Progress", "title": "Further ASAD refactoring"}, {"assignees": ["tommbendall"], "code Review": "andrewcoughtrie", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @thomasmelvin \r\nCode Reviewer: @andrewcoughtrie \r\n\r\n\r\n\r\n\r\n\r\nThis just fixes an incorrect team name in `CodeOwners.txt`.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [ ] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n# Test Suite Results - lfric_core - code_owner_fix/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [code_owner_fix/run1](https://cylchub/services/cylc-review/cycles/thomas.bendall/?suite=code_owner_fix%2Frun1) |\r\n| Suite User | thomas.bendall |\r\n| Workflow Start | 2026-01-23T16:30:55 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| lfric_core | [tommbendall/lfric_core@TBendall/CodeOwnerFix](https://github.com/tommbendall/lfric_core/tree/TBendall/CodeOwnerFix) | False |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 372\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](mailto:ToolsCollabDevTeam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 244, "repository": "MetOffice/lfric_core", "title": "Correction to team in code owner file", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/244"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkJ85k", "labels": ["bug", "documentation", "cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["thomasmelvin", "andrewcoughtrie"], "sciTech Review": "thomasmelvin", "status": "Done", "title": "Correction to team in code owner file"}, {"assignees": ["tommbendall"], "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @atb1995 \r\nCode Reviewer: \r\n\r\n\r\n\r\n\r\n\r\nThis PR implements the capability to represent orography with higher-order finite elements. This allows the heights of cell centres to be match the values defined in the orography ancillary files, and avoids loss of power in the orography from the process of averaging from W3 to W0 points. This has shown a significant improvement in NWP scores.\r\n\r\nThe changes in this PR can be summarised as:\r\n1. Ensure that the `surface_altitude` field has a degree that is specified through a new namelist option (and is not inherited from `element_order`)\r\n2. Reorganise `orography` namelist, to make this more coherent by:\r\n- moving `n_orog_smooth` into the `orography` namelist from `initialization`\r\n- moving `w0_orography_mapping` into the `orography` namelist and renaming it as `w0_multigrid_mapping`\r\n- introducing the `orography_order` option\r\n3. Set `coord_order=2` and `orography_order=2` as default for the gungho_model, lfric_atm, linear_model and jedi_lfric_tests apps (which updates KGOs)\r\n\r\n**Results**\r\nThe use of quadratic coordinate order has shown considerable improvement in NWP scores. For results, see:\r\n- [Winter DA trials](https://wwwspice/~martin.willett/verification/GC6B2_quadorog_JFM25_C224/imt/page.html?DDV)\r\n- [Standard NWP case studies](https://wwwspice/~thomas.bendall/GES/GC5-LFRic_dv665/imt/page.html?DDV)\r\n- [C64 AMIP](https://wwwspice/~thomas.bendall/autoassess/u-dv532_vs_u-ds757/valnote/means_global.html)\r\n\r\n**Important Links**:\r\nThis branch is built on top of two other PRs. To see the changes _just for this PR_, please see here: https://github.com/tommbendall/lfric_apps/pull/2/changes\r\n\r\nThere is also a _test branch_ which shows the KGO changes and action of the upgrade macro. To see the changes in that test branch, please see here: https://github.com/tommbendall/lfric_apps/pull/3/changes\r\n\r\n**Blocked By**:\r\n- #174 \r\n- #179 \r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid understanding and enhance the readability of the code\r\n- [ ] My changes generate no new warnings\r\n- [ ] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 180, "repository": "MetOffice/lfric_apps", "title": "Higher-order Orography", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/180"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkKD0U", "labels": ["enhancement", "KGO", "macro", "cla-signed"], "milestone": {"description": "Code Review deadline is 29th May 2026 (SciTech review to be completed by this date)", "dueOn": "2026-07-01T00:00:00Z", "title": "Summer 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["atb1995"], "sciTech Review": "atb1995", "status": "SciTech Review", "title": "Higher-order Orography"}, {"assignees": ["maggiehendry"], "code Review": "james-bruten-mo", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @Adrian-Lock\r\nCode Reviewer: @james-bruten-mo \r\n\r\n\r\n\r\n\r\nThis PR is a part of a series of tickets to consolidate all the JULES metadata in the JULES repository, to have one source and be imported from there. Please see \u200b[\u200bjules:wiki/SharingJULESmetadata](https://code.metoffice.gov.uk/trac/jules/intertrac/wiki/SharingJULESmetadata) (soon to be also migrated to GitHub).\r\n\r\nThis PR migrates `jules_model_environment` and the remainder of `jules_surface` apart from `l_aggregate` & `i_aggregate_opt`. These are deprecated options and if they were to be migrated, **jules-lfric** amendments would be required for a deprecated option as a result of the `i_aggregate_opt` enumeration. \r\n\r\nThis PR also migrates the parent specific metadata amendments (i.e. from **um-atmos** in the UM repository) to the JULES repository (**jules-um**) to allow metadata changes to be self-contained in the JULES repository.\r\n\r\nItems in the `jules_surface` namelist that are not available to LFRic have been made unavailable both in the metadata (LFRic apps repo PR) and in **src/control/lfric/check_unavailable_options_mod.F90**, which has also been rewritten with LFRic apps modules.\r\n\r\n**src/control/shared/jules_surface_mod.F90** where possible (i.e. where no major code changes were required) defaults have been changed to missing data and print statement formats have been updated for ease of reading in LFRic apps.\r\n\r\n\r\n- linked MetOffice/um#30\r\n- linked MetOffice/lfric_apps#181\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] If editing `rose-meta/jules-shared` then have you supplied a linked UM PR?\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the JULES rose-stem suite\r\n- [x] If shared files have been modified, I have run the UM and LFRic Apps rose\r\n stem suites\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\n### trac.log\r\n\r\nSee:\r\nMetOffice/um/pull/30 for UM trac.log\r\nMetOffice/lfric_apps/pull/181 for LFRoc apps trac.log\r\n\r\n\r\n# Test Suite Results - jules - jules-test-26-migrate-jules_model_environment/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [jules-test-26-migrate-jules_model_environment/run1](https://cylchub/services/cylc-review/cycles/margaret.hendry/?suite=jules-test-26-migrate-jules_model_environment%2Frun1) |\r\n| Suite User | margaret.hendry |\r\n| Workflow Start | 2026-01-25T18:25:05 |\r\n| Groups Run | all |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| jules | [maggiehendry/jules@26-migrate-jules_model_environment-remainder-of-jules_surface-to-jules-shared](https://github.com/maggiehendry/jules/tree/26-migrate-jules_model_environment-remainder-of-jules_surface-to-jules-shared) | False |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 667\r\n\r\n\r\n\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## Approvals\r\n\r\nPlease request all relevant approvals. See the CodeOwners.txt file for section\r\nowners.\r\n\r\n### Technical\r\n\r\n- [ ] JULES Code Owner\r\n- [ ] OpenMP\r\n- [ ] River Routing\r\n- [ ] Rose Stem\r\n- [x] Rose Metadata\r\n- [ ] Upgrade Macros\r\n\r\n### Scientific\r\n\r\n- [ ] Surface\r\n- [ ] Hydrology\r\n- [ ] Vegetation\r\n- [ ] Veg3 RED Demography\r\n- [ ] Biogechemistry\r\n- [ ] Biogenic fluxes\r\n- [ ] Fire\r\n- [ ] Lakes\r\n- [ ] Evaluation\r\n- [ ] Imogen\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 39, "repository": "MetOffice/jules", "title": "Migrate metadata jules_model_environment remainder of jules_surface to jules-shared", "type": "PullRequest", "url": "https://github.com/MetOffice/jules/pull/39"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkNnj4", "labels": ["Linked UM", "Linked Apps", "macro", "cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/jules", "reviewers": ["Adrian-Lock"], "sciTech Review": "Adrian-Lock", "status": "SciTech Review", "title": "Migrate metadata jules_model_environment remainder of jules_surface to jules-shared"}, {"assignees": ["james-bruten-mo"], "code Review": "jennyhickson", "content": {"body": "# PR Summary\r\n\r\nCode Reviewer: @jennyhickson \r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [ ] I have locally built the documentation successfully, and the output of changed sections is as expected\r\n\r\n# Code Review\r\n\r\n- [ ] The changes are coherent and valid\r\n", "number": 561, "repository": "MetOffice/simulation-systems", "title": "fix typo", "type": "PullRequest", "url": "https://github.com/MetOffice/simulation-systems/pull/561"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkO-yk", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/simulation-systems", "reviewers": ["jennyhickson"], "status": "Done", "title": "fix typo"}, {"assignees": ["maggiehendry"], "code Review": "james-bruten-mo", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @Adrian-Lock\r\nCode Reviewer: @james-bruten-mo \r\n\r\n\r\n\r\n\r\n\r\nThis PR is a part of a series of tickets to consolidate all the JULES metadata in the JULES repository, to have one source and be imported from there. Please see \u200b[\u200bjules:wiki/SharingJULESmetadata](https://code.metoffice.gov.uk/trac/jules/intertrac/wiki/SharingJULESmetadata) (soon to be also migrated to GitHub).\r\n\r\nThis PR migrates `jules_model_environment` and the remainder of `jules_surface` apart from `l_aggregate` & `i_aggregate_opt`. These are deprecated options and if they were to be migrated, **jules-lfric** amendments would be required for a deprecated option as a result of the `i_aggregate_opt` enumeration.\r\n\r\nThis ticket also migrates the parent specific metadata amendments related to these namelists (i.e. from **um-atmos** in the UM repository) to the JULES repository (**jules-um**) to allow metadata changes to be self-contained in the JULES repository.\r\n\r\n\r\n- linked MetOffice/jules#39\r\n- linked MetOffice/lfric_apps#181\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the UM rose-stem suite\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n# Test Suite Results - um - um-test-27-migrate-jules_model_environment/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [um-test-27-migrate-jules_model_environment/run1](https://cylchub/services/cylc-review/cycles/margaret.hendry/?suite=um-test-27-migrate-jules_model_environment%2Frun1) |\r\n| Suite User | margaret.hendry |\r\n| Workflow Start | 2026-01-25T18:54:21 |\r\n| Groups Run | developer', 'jules |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [maggiehendry/jules@17ebfeb](https://github.com/maggiehendry/jules/tree/17ebfeb) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| mule | [MetOffice/mule@2025.10.1](https://github.com/MetOffice/mule/tree/2025.10.1) | True |\r\n| shumlib | [MetOffice/shumlib@2025.10.1](https://github.com/MetOffice/shumlib/tree/2025.10.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n| um | [maggiehendry/um@test-27-migrate-jules_model_environment-remainder-of-jules_surface-to-jules-shared](https://github.com/maggiehendry/um/tree/test-27-migrate-jules_model_environment-remainder-of-jules_surface-to-jules-shared) | False |\r\n| um_aux | [MetOffice/um_aux@2025.12.1](https://github.com/MetOffice/um_aux/tree/2025.12.1) | True |\r\n| um_meta | [MetOffice/um_meta@2025.12.1](https://github.com/MetOffice/um_meta/tree/2025.12.1) | True |\r\n\r\n## Approvals\r\n### Code Owners\r\n| Section | Owner | Deputy | State |\r\n| :--- | :--- | :--- | :--- |\r\n| upgrade_macros | ericaneininger | jamesbruten | Pending |\r\n| rose_stem | jamesbruten | roddysharp | Pending |\r\n| rose-meta.conf | owner_of_related_section | -- | Pending |\r\n### Config Owners\r\nNo UM Config Owners Required\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 1069\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 30, "repository": "MetOffice/um", "title": "Migrate metadata jules_model_environment remainder of jules_surface to jules-shared", "type": "PullRequest", "url": "https://github.com/MetOffice/um/pull/30"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkP6oM", "repository": "https://github.com/MetOffice/um", "reviewers": ["Adrian-Lock"], "sciTech Review": "Adrian-Lock", "status": "SciTech Review", "title": "Migrate metadata jules_model_environment remainder of jules_surface to jules-shared"}, {"assignees": ["maggiehendry"], "code Review": "james-bruten-mo", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @Adrian-Lock \r\nCode Reviewer: @james-bruten-mo \r\n\r\n\r\n\r\n\r\n\r\nThis PR is a part of a series of tickets to consolidate all the JULES metadata in the JULES repository, to have one source and be imported from there. Please see \u200b[\u200bjules:wiki/SharingJULESmetadata](https://code.metoffice.gov.uk/trac/jules/intertrac/wiki/SharingJULESmetadata) (soon to be also migrated to GitHub).\r\n\r\nThis PR migrates `jules_model_environment` and the remainder of `jules_surface` apart from `l_aggregate` & `i_aggregate_opt`. These are deprecated options and if they were to be migrated, **jules-lfric** amendments would be required for a deprecated option as a result of the `i_aggregate_opt` enumeration.\r\n\r\nAs a result of the way \"lfric_coupled\" imports the component config files `jules_model_environment` cannot exist in two different components (one overwrites the other). A workaround to this and to deal with the enumeration differences was to add the namelist appended with \"_lfric\" i.e. `namelist:jules_model_enviroment_lfric` to avoid overwiting Rivers config. `lsm_id` has not been added until the namelist can be shared. \r\n\r\nItems in the `jules_surface` namelist that are not available to LFRic have been made unavailable in the metadata by adding them to the `namelist:jules_model_environment_lfric=l_jules_parent` trigger list with \"not_lfric\". They are made unavailable in the code by **src/control/lfric/check_unavailable_options_mod.F90** in the JULES repo.\r\n\r\n\r\n- linked MetOffice/jules#39\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n# [Test Suite Results - lfric_apps - lfric_apps-test2-146-migrate-jules_model_environment/run1](#lfric_apps-test)\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [lfric_apps-test2-146-migrate-jules_model_environment/run1](https://cylchub/services/cylc-review/cycles/margaret.hendry/?suite=lfric_apps-test2-146-migrate-jules_model_environment%2Frun1) |\r\n| Suite User | margaret.hendry |\r\n| Workflow Start | 2026-01-26T12:44:13 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [maggiehendry/jules@17ebfeb](https://github.com/maggiehendry/jules/tree/17ebfeb) | True |\r\n| lfric_apps | [maggiehendry/lfric_apps@146-migrate-jules_model_environment-remainder-of-jules_surface-to-jules-shared](https://github.com/maggiehendry/lfric_apps/tree/146-migrate-jules_model_environment-remainder-of-jules_surface-to-jules-shared) | False |\r\n| lfric_core | [MetOffice/lfric_core@2025.12.1](https://github.com/MetOffice/lfric_core/tree/2025.12.1) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 1106\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 181, "repository": "MetOffice/lfric_apps", "title": "Migrate metadata jules_model_environment remainder of jules_surface to jules-shared", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/181"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkQJxI", "labels": ["cla-signed"], "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["Adrian-Lock"], "sciTech Review": "Adrian-Lock", "status": "SciTech Review", "title": "Migrate metadata jules_model_environment remainder of jules_surface to jules-shared"}, {"assignees": ["tom-j-h"], "code Review": "mo-marqh", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @cjohnson-pi \r\nCode Reviewer: @mo-marqh \r\n\r\nThis development is described on an old trac ticket: https://code.metoffice.gov.uk/trac/lfric_apps/ticket/682. This includes many links to the details of the scheme, as well as plots of results. In particular, https://wwwspice/~tim.payne/docs/4D-Var/PF/TL_BL_2025/TL_BL_2025.html has links to relevant VSDP documents.\r\n\r\nDevelopment was done by Tim Payne - I am simply taking the old fcm branch and creating this GitHub PR.\r\n\r\n- is blocked-by #163\r\n- closes #129\r\n\r\n**PLEASE NOTE** - this is a follow-on to #163. The branch was created from #163's branch in my fork, but I can't make a PR into that branch because then I would be stuck in my fork. So, to look at the actual changes relevant to this PR alone, look at the diff of this branch with #161's branch: https://github.com/tom-j-h/lfric_apps/compare/jelf_C224_adjoint_tests...tom-j-h:lfric_apps:tlad_boundary_layer\r\n\r\n**PLEASE ALSO NOTE** - #163 is blocked by #161 which is blocked by #156 which relies on https://github.com/MetOffice/lfric_core/pull/227, so when testing, I used this Core branch.\r\n\r\nThe change includes new files to be added to BIG_DATA_DIR - see paths to files in /data/users/tim.payne/ in changes.\r\n\r\nTest branch: https://github.com/tom-j-h/lfric_apps/tree/tlad_boundary_layer-test\r\n\r\n## Code Quality Checklist\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid understanding and enhance the readability of the code\r\n- [ ] My changes generate no new warnings\r\n- [ ] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n# Test Suite Results - lfric_apps - tlad_boundary_layer-developer/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [tlad_boundary_layer-developer/run1](https://cylchub/services/cylc-review/cycles/tom.hill/?suite=tlad_boundary_layer-developer%2Frun1) |\r\n| Suite User | tom.hill |\r\n| Workflow Start | 2026-01-26T12:26:56 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [tom-j-h/lfric_apps@tlad_boundary_layer-test](https://github.com/tom-j-h/lfric_apps/tree/tlad_boundary_layer-test) | False |\r\n| lfric_core | [tom-j-h/lfric_core@2a67d6b](https://github.com/tom-j-h/lfric_core/tree/2a67d6b) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n
\r\n:x: failed tasks - 9\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| check_linear_model_dcmip301-C24_azspice_gnu_fast-debug-64bit | failed |\r\n| check_linear_model_dcmip301-C24_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_linear_model_nwp_gal9-C12_MG_azspice_gnu_fast-debug-64bit | failed |\r\n| check_linear_model_nwp_gal9-C12_MG_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_linear_model_nwp_gal9_random-C12_MG_azspice_gnu_fast-debug-64bit | failed |\r\n| check_linear_model_nwp_gal9_random-C12_MG_ex1a_gnu_fast-debug-64bit | failed |\r\n| check_linear_model_semi-implicit-C12_azspice_gnu_fast-debug-64bit | failed |\r\n| check_linear_model_semi-implicit-C12_ex1a_gnu_fast-debug-64bit | failed |\r\n| kgo_groups_checker | failed |\r\n
\r\n:white_check_mark: succeeded tasks - 1102\r\n
\r\n:hourglass: waiting tasks - 2\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| housekeep_azspice | waiting |\r\n| housekeep_ex1a | waiting |\r\n
\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 182, "repository": "MetOffice/lfric_apps", "title": "Linear and adjoint boundary layer physics", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/182"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkQUoc", "labels": ["KGO", "macro", "cla-modified"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["cjohnson-pi", "ss421", "matthewrmshin"], "sciTech Review": "cjohnson-pi", "status": "SciTech Review", "title": "Linear and adjoint boundary layer physics"}, {"assignees": ["james-bruten-mo"], "code Review": "jennyhickson", "content": {"body": "In the CLA action the merge ref of a PR is currently compared against the Base SHA to see if the CONTRIBUTORS file has been modified in that branch. \r\n\r\n* The merge ref represents the latest version of the target branch merged with the PR branch (and only exists if there are no conflicts).\r\n* The Base SHA represents the latest commit shared between the target and PR branch (either the point the PR branch was created or the last time the PR branch was updated)\r\n\r\nThis is incorrect as the merge ref may well contain additional commits since the Base SHA, some of which might change the CONTRIBUTORS, resulting in incorrect failures. Instead, use the Base Ref value, which returns the name of the target branch, and therefore we'll be comparing against the latest commit.", "number": 60, "repository": "MetOffice/growss", "title": "update to use base_ref, not base_sha", "type": "PullRequest", "url": "https://github.com/MetOffice/growss/pull/60"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkQfaU", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/growss", "reviewers": ["jennyhickson"], "status": "Done", "title": "update to use base_ref, not base_sha"}, {"content": {"body": "The diff command requires and `origin/` as well as the base ref", "number": 61, "repository": "MetOffice/growss", "title": "Change diff point", "type": "PullRequest", "url": "https://github.com/MetOffice/growss/pull/61"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkQihQ", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/growss", "reviewers": ["jennyhickson"], "status": "Done", "title": "Change diff point"}, {"assignees": ["EdHone"], "code Review": "andrewcoughtrie", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: N/A\r\nCode Reviewer: @andrewcoughtrie \r\n\r\n\r\n\r\n\r\n\r\nMetOffice/lfric_core#233 removed an API option for the `lfric_xios_context_type`. This was almost entirely contained to the lfric_core repo, but there was a single usage of this option within lfric_apps. This PR removes it.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](tooscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 183, "repository": "MetOffice/lfric_apps", "title": "Remove use of deprecated XIOS context API", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/183"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkQ3bY", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["andrewcoughtrie"], "status": "Done", "title": "Remove use of deprecated XIOS context API"}, {"assignees": ["james-bruten-mo"], "code Review": "t00sa", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @t00sa \r\n\r\n\r\n\r\nThis merges changes from MetOffice/lfric_apps#162 into this repo as they may be of use here in the future.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] This change has been tested appropriately (please describe)\r\n\r\nTested by running with the Apps rose-stem suite\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n\r\n", "number": 168, "repository": "MetOffice/SimSys_Scripts", "title": "Copy overwrite changes", "type": "PullRequest", "url": "https://github.com/MetOffice/SimSys_Scripts/pull/168"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkRKh0", "repository": "https://github.com/MetOffice/SimSys_Scripts", "reviewers": ["t00sa"], "status": "Done", "title": "Copy overwrite changes"}, {"code Review": "t00sa", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @MatthewHambley \r\nCode Reviewer: @t00sa \r\n\r\n\r\n\r\nAdds a first Fab build script for Skeleton. To keep this change minimal, it's command line only (i.e. no cylc integration, which can come later).\r\n\r\n\r\n\r\n- closes #240\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [ ] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [x] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](mailto:ToolsCollabDevTeam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 246, "repository": "MetOffice/lfric_core", "title": "240 add skeleton fab script", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/246"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkTZrw", "labels": ["cla-signed"], "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["MatthewHambley", "stevemullerworth", "mike-hobson"], "sciTech Review": "MatthewHambley", "status": "SciTech Review", "title": "240 add skeleton fab script"}, {"assignees": ["t00sa"], "code Review": "r-sharp", "content": {"body": "Update the rose-stem configuration files to simplify the process of running the test suite on the monsoon 3 partition of EXD.\r\n\r\n# PR Summary\r\n\r\nSci/Tech Reviewer: @james-bruten-mo \r\nCode Reviewer: @r-sharp \r\n\r\nSimilar to trac ticket [#779](https://code.metoffice.gov.uk/trac/lfric_apps/ticket/779) and metoffice/lfric_apps#166, this adds support for the test suites on monsoon 3 using github PATs to access the repositories.\r\n\r\n\r\n\r\n- closes #247 \r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [ ] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](mailto:ToolsCollabDevTeam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 248, "repository": "MetOffice/lfric_core", "title": "Add support for the test suite on monsoon 3", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/248"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkVTdU", "labels": ["cla-signed"], "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["mo-rickywong", "james-bruten-mo"], "sciTech Review": "james-bruten-mo", "status": "Changes Requested", "title": "Add support for the test suite on monsoon 3"}, {"assignees": ["caroduro", "mo-eddy"], "code Review": "ericaneininger", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @ericaneininger \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's style guidelines\r\n- [x] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [x] My changes generate no new warnings\r\n- [ ] If editing `rose-meta/jules-shared` then have you supplied a linked UM PR?\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the JULES rose-stem suite\r\n- [ ] If shared files have been modified, I have run the UM and LFRic Apps rose\r\n stem suites\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n# Test Suite Results - jules - caroduro_jules/run2\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [caroduro_jules/run2](https://cylchub/services/cylc-review/cycles/james.bruten/?suite=caroduro_jules%2Frun2) |\r\n| Suite User | james.bruten |\r\n| Workflow Start | 2026-01-29T09:51:13 |\r\n| Groups Run | all |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| jules | [caroduro/jules@vn8.0_lsh_new_zw_lsh_full_hydraulic_connect](https://github.com/caroduro/jules/tree/vn8.0_lsh_new_zw_lsh_full_hydraulic_connect) | False |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 667\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## Approvals\r\n\r\nPlease request all relevant approvals. See the CodeOwners.txt file for section\r\nowners.\r\n\r\n### Technical\r\n\r\n- [ ] JULES Code Owner\r\n- [ ] OpenMP\r\n- [ ] River Routing\r\n- [ ] Rose Stem\r\n- [ ] Rose Metadata\r\n- [ ] Upgrade Macros\r\n\r\n### Scientific\r\n\r\n- [ ] Surface\r\n- [ ] Hydrology\r\n- [ ] Vegetation\r\n- [ ] Veg3 RED Demography\r\n- [ ] Biogechemistry\r\n- [ ] Biogenic fluxes\r\n- [ ] Fire\r\n- [ ] Lakes\r\n- [ ] Evaluation\r\n- [ ] Imogen\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 40, "repository": "MetOffice/jules", "title": "Vn8.0 lsh new zw lsh full hydraulic connect [issue 33]", "type": "PullRequest", "url": "https://github.com/MetOffice/jules/pull/40"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkVVbI", "labels": ["cla-signed"], "repository": "https://github.com/MetOffice/jules", "reviewers": [], "status": "In Progress", "title": "Vn8.0 lsh new zw lsh full hydraulic connect [issue 33]"}, {"assignees": ["mo-rickywong"], "code Review": "mo-lucy-gordon", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @mo-lucy-gordon \r\n\r\n\r\n\r\nAs part of work to remove configuration namelist access from module scope, configuration variables will need to be passed\r\nby argument. Configuration variables passed by argument to kernels is more involved, so this PR moves the **use _config_mod** from the Jacobian routines up to the to the kernel level in preparation of further changes.\r\n\r\n**Linked PRs**\r\nMetOffice/lfric_apps#184\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [ ] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [x] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\nRose test-suite Runs Green\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](mailto:ToolsCollabDevTeam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 249, "repository": "MetOffice/lfric_core", "title": "Remove module scope access of namelist variables by coordinate/native jacobian.", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/249"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkVjKo", "labels": ["cla-signed"], "repository": "https://github.com/MetOffice/lfric_core", "status": "In Progress", "title": "Remove module scope access of namelist variables by coordinate/native jacobian."}, {"assignees": ["mo-rickywong"], "code Review": "mo-lucy-gordon", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @mo-lucy-gordon \r\n\r\n\r\n\r\nIn preparation to remove configuration variables from module scope MetOffice/lfric_core#249 removes such practice in **coordinate/native Jacobian** routines to the kernel level. This PR is to modify calls to updated routines from kernels/unit-tests in LFRic_apps. Changes in this PR will be similar in nature, though touch a large number of files\r\n\r\n\r\nThis change doesn't change any KGOs and is an infrastructure change.\r\n\r\n**Linked PRs:**\r\nMetOffice/lfric_core#249\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [ ] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n# Test Suite Results - lfric_apps - AppsFloatJacobian/run9\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [AppsFloatJacobian/run9](https://cylchub/services/cylc-review/cycles/ricky.wong/?suite=AppsFloatJacobian%2Frun9) |\r\n| Suite User | ricky.wong |\r\n| Workflow Start | 2026-01-27T15:59:47 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [mo-rickywong/lfric_apps@AppsFloatJacobian](https://github.com/mo-rickywong/lfric_apps/tree/AppsFloatJacobian) | False |\r\n| lfric_core | [mo-rickywong/lfric_core@FloatJacobian](https://github.com/mo-rickywong/lfric_core/tree/FloatJacobian) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 1106\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](toolscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 184, "repository": "MetOffice/lfric_apps", "title": "Modify LFRic Apps files that call native/coordinate Jacobian files", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/184"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkVrEM", "labels": ["cla-signed"], "repository": "https://github.com/MetOffice/lfric_apps", "status": "In Progress", "title": "Modify LFRic Apps files that call native/coordinate Jacobian files"}, {"assignees": ["andrewcoughtrie"], "code Review": "EdHone", "content": {"body": "# PR Summary\r\n\r\nCreating a duplicate of `mpif90.mk` for the more modern `mpifort.mk`, this is only a short term solution to allow JEDI to use the more modern mpifort, this should also be considered when creating the fab build system.\r\n\r\nSci/Tech Reviewer: @mike-hobson \r\nCode Reviewer: @EdHone \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\ncloses #245 \r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n# Test Suite Results - lfric_core - PR251/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [PR251/run1](https://cylchub/services/cylc-review/cycles/andrew.coughtrie/?suite=PR251%2Frun1) |\r\n| Suite User | andrew.coughtrie |\r\n| Workflow Start | 2026-01-28T11:47:03 |\r\n| Groups Run | developer |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| lfric_core | [andrewcoughtrie/lfric_core@mpifort_makefile](https://github.com/andrewcoughtrie/lfric_core/tree/mpifort_makefile) | False |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 372\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](mailto:ToolsCollabDevTeam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [x] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [x] Documentation is complete and accurate\r\n- [x] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n", "number": 251, "repository": "MetOffice/lfric_core", "title": "Mpifort makefile", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/251"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkV0Ck", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["stevemullerworth", "MatthewHambley", "mike-hobson", "mike-hobson", "EdHone", "EdHone"], "sciTech Review": "mike-hobson", "status": "Done", "title": "Mpifort makefile"}, {"assignees": ["james-bruten-mo"], "code Review": "ericaneininger", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @t00sa \r\nCode Reviewer: @ericaneininger \r\n\r\n\r\n\r\nInitial attempt at a script to merge different git branches for use in suites. The changes have been tested with the LFRic suites and with the lfric_apps rose-stem at `vn3.0`. If we think this is a good idea I'll also modify the UM suites to use this extraction method to maintain consistency.\r\n\r\nThese changes allow the `dependencies.yaml` file to specify multiple branches to merge together. This can be done by:\r\n\r\n```yaml\r\nlfric_apps:\r\n - source: git@github.com:MetOffice/lfric_apps.git\r\n ref: 2025.12.1\r\n - source: git@github.com:james-bruten-mo/lfric_apps.git\r\n ref: test_merge_branch\r\n - source: git@github.com:james-bruten-mo/lfric_apps.git\r\n ref: test_branch2\r\n - source: git@github.com:james-bruten-mo/lfric_apps.git\r\n ref: conflic_apps\r\n```\r\n\r\nwhich will clone the first source and then merge each subsequent source into this. It's currently setup to ignore merge conflicts in `rose-stem` and `dependencies.yaml` as these files aren't important for running scientific suites.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] This change has been tested appropriately (please describe)\r\n\r\nLFRic standalone suites and lfric_apps rose-stem at vn3.0\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n\r\n", "number": 169, "repository": "MetOffice/SimSys_Scripts", "title": "Suite merge script", "type": "PullRequest", "url": "https://github.com/MetOffice/SimSys_Scripts/pull/169"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkWDiA", "repository": "https://github.com/MetOffice/SimSys_Scripts", "reviewers": ["t00sa", "t00sa", "ericaneininger", "cameronbateman-mo"], "sciTech Review": "t00sa", "status": "Changes Requested", "title": "Suite merge script"}, {"assignees": ["yaswant"], "code Review": "jennyhickson", "content": {"body": "# PR Summary\r\n\r\nCode Reviewer: @jennyhickson \r\n\r\n\r\n\r\nAdd list of Simulation Systems repositories to README for easy access.\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] I have locally built the documentation successfully, and the output of changed sections is as expected\r\n\r\n# Code Review\r\n\r\n- [x] The changes are coherent and valid\r\n", "number": 565, "repository": "MetOffice/simulation-systems", "title": "Update README to add SimSys repository list", "type": "PullRequest", "url": "https://github.com/MetOffice/simulation-systems/pull/565"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkWsGE", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/simulation-systems", "reviewers": ["jennyhickson"], "status": "Approved", "title": "Update README to add SimSys repository list"}, {"assignees": ["tommbendall"], "code Review": "ericaneininger", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @thomasmelvin \r\nCode Reviewer: @ericaneininger \r\n\r\n\r\n\r\n\r\n\r\nThis is a simple PR, which sets the rose-stem default for `log_to_rank_zero` to be `.true.`, for all apps.\r\n\r\nThis option writes log files only on the first rank, rather than on all -- turning on the option that was added in https://code.metoffice.gov.uk/trac/lfric/ticket/4577. Logging on all ranks for all tests in the test-suite creates thousands of unused files, using unnecessary energy and data when these files are left behind. It would be better to only turn this option on when needing to debug.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n# Test Suite Results - lfric_apps - log_rank_zero/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [log_rank_zero/run1](https://cylchub/services/cylc-review/cycles/thomas.bendall/?suite=log_rank_zero%2Frun1) |\r\n| Suite User | thomas.bendall |\r\n| Workflow Start | 2026-01-28T08:53:36 |\r\n| Groups Run | suite_default |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [tommbendall/lfric_apps@TBendall/LogRankZero](https://github.com/tommbendall/lfric_apps/tree/TBendall/LogRankZero) | False |\r\n| lfric_core | [MetOffice/lfric_core@2025.12.1](https://github.com/MetOffice/lfric_core/tree/2025.12.1) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 1106\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](toolscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 186, "repository": "MetOffice/lfric_apps", "title": "Log to rank zero only by default", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/186"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkY2Ow", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["matthewrmshin", "ss421", "thomasmelvin", "ericaneininger"], "sciTech Review": "thomasmelvin", "status": "Code Review", "title": "Log to rank zero only by default"}, {"assignees": ["tommbendall"], "code Review": "mo-alistairp", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @jameskent-metoffice \r\nCode Reviewer: @mo-alistairp \r\n\r\n\r\n\r\n\r\n\r\nThis is a simple change which updates one of the model's most common error messages, removing a typo and improving the instructions for model users.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n# Test Suite Results - lfric_apps - better_lipschitz_error/run2\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [better_lipschitz_error/run2](https://cylchub/services/cylc-review/cycles/thomas.bendall/?suite=better_lipschitz_error%2Frun2) |\r\n| Suite User | thomas.bendall |\r\n| Workflow Start | 2026-01-28T10:10:12 |\r\n| Groups Run | suite_default |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [tommbendall/lfric_apps@TBendall/BetterLipschitzError](https://github.com/tommbendall/lfric_apps/tree/TBendall/BetterLipschitzError) | False |\r\n| lfric_core | [MetOffice/lfric_core@2025.12.1](https://github.com/MetOffice/lfric_core/tree/2025.12.1) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 1106\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](toolscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [x] Related Issues have been properly linked and addressed\r\n- [x] CLA compliance has been confirmed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [x] Documentation is complete and accurate\r\n- [x] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n", "number": 187, "repository": "MetOffice/lfric_apps", "title": "Improve negative mass error message", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/187"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkZBZY", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["jameskent-metoffice", "mo-alistairp"], "sciTech Review": "jameskent-metoffice", "status": "Approved", "title": "Improve negative mass error message"}, {"assignees": ["jennyhickson"], "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: \r\n\r\n\r\n\r\n\r\nAll code owners have been moved from codeowners.txt to CODEOWNERS. All codeowners who wish to be notified about changes are \"live\", while others and deputies are in comments so that this one file provides a complete picture of the codeowner community. \r\n\r\nAll codeowners have been added to SimSysScienceReviewers so they have appropriate access to the repository. \r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid understanding and enhance the readability of the code\r\n- [ ] My changes generate no new warnings\r\n- [ ] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](toolscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 188, "repository": "MetOffice/lfric_apps", "title": "Add all codeowners to CODEOWNERS file", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/188"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkZhxs", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "status": "In Progress", "title": "Add all codeowners to CODEOWNERS file"}, {"assignees": ["andrewcoughtrie"], "code Review": "james-bruten-mo", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @james-bruten-mo \r\n\r\n\r\n\r\n\r\n\r\nJust a small change to get the diff in code review to syntax highlight Fortran files correctly. \r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](mailto:ToolsCollabDevTeam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 253, "repository": "MetOffice/lfric_core", "title": "Change gitattributes diff to fortran-free-form", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/253"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkaPyE", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["james-bruten-mo"], "status": "Done", "title": "Change gitattributes diff to fortran-free-form"}, {"assignees": ["andrewcoughtrie"], "code Review": "james-bruten-mo", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @james-bruten-mo \r\n\r\n\r\n\r\n\r\n\r\nUpdated the `.gitattributes` file to have the text diff as `fortran-free-form` for all Fortran files.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](toolscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 190, "repository": "MetOffice/lfric_apps", "title": "Update gitattributes diff to fortran-free-form", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/190"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkahf8", "labels": ["cla-signed"], "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["james-bruten-mo"], "status": "Done", "title": "Update gitattributes diff to fortran-free-form"}, {"assignees": ["christophermaynard", "alanjhewitt"], "code Review": "Pierre-siddall", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @Pierre-siddall \r\n\r\n\r\n\r\n\r\n\r\n**Developments included in this ticket**\r\n\r\n**RADAER FULL DOMAIN**\r\n\r\nReinitialise um_size: Set um_size to the number of horizontal cells before invoking the RADAER kernel, and reset it to 1 after the invocation.\r\n\r\nSwitch operation mode: Change the mode from column to domain in radaer_kernal_mod.F90 so that Psyclone can recognise the update, automatically generate the radaer_alg_mod_psy.f90 file, and provide suitable arguments for all subroutines. This enables the full horizontal and vertical domain data transfer to the RADAER code.\r\n\r\nUpdate variable dimensions: Adjust variable sizes in radaer_kernal_mod.F90 to accept whole-domain data. A do loop was then introduced to initialise variables passed into key RADAER subroutines and to store the computed results, that involved a change of the data structure extents and associated loops from an \"I-first\" to a \"K-first\" approach.\r\n\r\n**Bug fix**\r\n\r\nBoth the p_theta_levels and t_theta_levels pass the wrong number of dimensions to ukca_radaer_prepare.\r\n\r\n**Rafactor radaer kernel**\r\n\r\nIn order to limit the number of times we switch from I-first to K-first addressing, I have made a UKCA side interface module that calls all of the UKCA side science code. I also reordered the sequence of I-first to K-first addressing.\r\n\r\n**Segmentation**\r\n\r\nAll of the arrays passed to the UKCA side are now allocatable, so that correct segments can be passed with each iteration of the segmentation loop. The order of deallocation is the reverse order of allocation to prevent memory striding.\r\n\r\nThe I-first to K-first addressing changes from [#841](https://code.metoffice.gov.uk/trac/lfric_apps/ticket/841) full domain have been refactored so that the memory points to the part of memory associated with the segment for each iteration of the segment loop. This was complicated and is difficulty to describe in words, but I think will make sense when looking at the code change.\r\n\r\nFor short wave only, radaer_band_average does not need to be called for nightside segments, and this is a considerable cost save. We determine if any of the columns within each segment are on the dayside or not and pass that information to the UKCA interface code. This logical is calculated inside the segmentation loop.\r\n\r\nSimilirly, as the AOD diagnostics are optional, we only have to call the diagnostic modules if they are requested. I gather this information outside the segmentation loop.\r\n\r\n- linked MetOffice/UKCA#21\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid understanding and enhance the readability of the code\r\n- [ ] My changes generate no new warnings\r\n- [ ] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](toolscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 191, "repository": "MetOffice/lfric_apps", "title": "Radaer seg", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/191"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkahss", "labels": ["Linked UKCA"], "repository": "https://github.com/MetOffice/lfric_apps", "status": "In Progress", "title": "Radaer seg"}, {"assignees": ["christophermaynard", "alanjhewitt"], "code Review": "Pierre-siddall", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @Pierre-siddall \r\n\r\n\r\n\r\n\r\n\r\nAdded interface module to allow segmented chunks to be called from LFRic Apps to RADAER.\r\n\r\n- linked MetOffice/lfric_apps#191\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's style guidelines\r\n- [ ] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the UKCA rose-stem suite\r\n- [ ] If shared files have been modified, I have run the UM and LFRic Apps rose\r\n stem suites\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 21, "repository": "MetOffice/ukca", "title": "Segmetation in calls from lfric_apps to radaer", "type": "PullRequest", "url": "https://github.com/MetOffice/ukca/pull/21"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkangk", "labels": ["Linked Apps", "cla-signed"], "repository": "https://github.com/MetOffice/ukca", "status": "In Progress", "title": "Segmetation in calls from lfric_apps to radaer"}, {"assignees": ["stevemullerworth"], "code Review": "mo-lottieturner", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: @tommbendall \r\nCode Reviewer: @mo-lottieturner \r\n\r\n\r\n\r\n\r\n\r\nThe `rhcrit` field is an evolving field that is an input to glomap aerosol. Currently, it is not written to the checkpoint restart file resulting in some runs losing bit comparison across a checkpoint-restart point relative to an equivalent longer run. This failure ought to have been picked up by the nrun-crun tests, but the existing tests run only one-timestep continuation runs, and the main prognostics written to the checksum file are unaffected till the second timestep.\r\n\r\nThere are two possible solutions: first, `rhcrit` could be written to and read from the checkpoint file. Second, the value of `rhcrit` can be taken from the configuration file rather than from the field. According to @iboutle, this is what is done in the UM. Therefore, this solution takes the second approach.\r\n\r\nThe PR includes expected KGO changes.\r\n\r\nPSyclone now includes the capability to pass arrays to kernels, but lfric_apps does not yet use a version of PSyclone with this functionality. Issue #194 opened to deal with this when the time comes.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [x] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\nUnfortunately, one of the tasks timed-out when rerunning to check updated KGOs. There will inevitably be a further KGO update once this branch is ready to go on, so hopefully the PR can progress.\r\n\r\n### trac.log\r\n\r\n# Test Suite Results - lfric_apps - rhcrit_forpr/run2\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [rhcrit_forpr/run2](https://cylchub/services/cylc-review/cycles/steve.mullerworth/?suite=rhcrit_forpr%2Frun2) |\r\n| Suite User | steve.mullerworth |\r\n| Workflow Start | 2026-01-28T12:29:24 |\r\n| Groups Run | all |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| casim | [MetOffice/casim@2025.12.1](https://github.com/MetOffice/casim/tree/2025.12.1) | True |\r\n| jules | [MetOffice/jules@2025.12.1](https://github.com/MetOffice/jules/tree/2025.12.1) | True |\r\n| lfric_apps | [stevemullerworth/lfric_apps@nruncrun](https://github.com/stevemullerworth/lfric_apps/tree/nruncrun) | False |\r\n| lfric_core | [MetOffice/lfric_core@2025.12.1](https://github.com/MetOffice/lfric_core/tree/2025.12.1) | True |\r\n| moci | [MetOffice/moci@2025.12.1](https://github.com/MetOffice/moci/tree/2025.12.1) | True |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n| socrates | [MetOffice/socrates@2025.12.1](https://github.com/MetOffice/socrates/tree/2025.12.1) | True |\r\n| socrates-spectral | [MetOffice/socrates-spectral@2025.12.1](https://github.com/MetOffice/socrates-spectral/tree/2025.12.1) | True |\r\n| ukca | [MetOffice/ukca@2025.12.1](https://github.com/MetOffice/ukca/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n
\r\n:x: failed tasks - 1\r\n\r\n| Task | State |\r\n| :--- | :--- |\r\n| run_gungho_model_robert-moist-smag-BiP100x8-10x10_azspice_gnu_fast-debug-64bit | failed |\r\n
\r\n:white_check_mark: succeeded tasks - 1451\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](toolscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [x] I understand this area of code and the changes being added\r\n- [x] The proposed changes correspond to the pull request description\r\n- [x] Documentation is sufficient (do documentation papers need updating)\r\n- [x] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 193, "repository": "MetOffice/lfric_apps", "title": "Replace model rh_crit with fixed value from config in glomap_aerosol", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/193"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkazA0", "labels": ["KGO", "cla-signed"], "repository": "https://github.com/MetOffice/lfric_apps", "reviewers": ["tommbendall", "mo-lottieturner"], "sciTech Review": "tommbendall", "status": "Code Review", "title": "Replace model rh_crit with fixed value from config in glomap_aerosol"}, {"assignees": ["tommbendall"], "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: \r\n\r\n\r\n\r\n\r\n\r\nSome kernels may break bit-reproducibility with threading. These kernels all WRITE to W2 fields, but include a check along the lines of:\r\n```\r\n! only do calculation if not already done\r\nif (du_inc(map_w2(df)) == 0) then\r\n ... \r\nend if\r\n```\r\nThis is to prevent both columns trying to write to the same face (and is an optimisation in that it reduces duplication of computations). This is not safe for threading because there is no guarantee which thread will column will write to the face first. We seem to get away with this at the moment because our current tests ensure that both columns perform the same calculation to the bit level.\r\n\r\nThe solution here is to use the face_selector objects to ensure that each face is only written to by a specified column.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid understanding and enhance the readability of the code\r\n- [ ] My changes generate no new warnings\r\n- [ ] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](toolscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 195, "repository": "MetOffice/lfric_apps", "title": "Some kernels that write to W2 fields aren't safe for threading", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/195"}, "id": "PVTI_lADOAGrG5M4A_OAXzgka9qo", "labels": ["bug", "KGO", "cla-signed"], "repository": "https://github.com/MetOffice/lfric_apps", "status": "In Progress", "title": "Some kernels that write to W2 fields aren't safe for threading"}, {"assignees": ["mike-hobson"], "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: None required\r\nCode Reviewer: \r\n\r\nI noted three deficiencies with the partition unit tests:\r\n1. There are no tests of uneven partitions. The single panel partitioner unit tests use an 8x8 full domain mesh. If this is partitioned over 3 ranks, it should result in partitions of size 3x8, 3x8 and 2x8 (i.e. uneven). Add such tests to the biperiodic, planar and x- plus y- trench mesh partitioner tests.\r\n2. There is no test of the parallel cubedsphere partitioner. This was omitted because it is slow to run from the command line. Whilst that is true (it is slower than all the other infrastructure unit tests combined), this is the partitioner used for almost all global model runs - so I have added it in (and we'll take the hit on runtime).\r\n3. The current test suite runs the unit tests on one core - even though the infrastructure unit tests are parallel. The infrastructure unit tests take two and a half minutes to complete. Giving them the correct number of cores to run on drops this to 8 seconds. There is no fine-grained control of resources for the unit tests, so after discussions with SSD, we decided it was fine for all \"technical tests\" (integration- and unit-tests) to run on multiple cores. The Met Office appears to have its own overrides for this setting, but I have also changed the system default (as I can see no reason for anyone wanting to run a parallel test on a single core)\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [x] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [x] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n# Test Suite Results - lfric_core - partition_test/run1\r\n\r\n## Suite Information\r\n\r\n| Item | Value |\r\n| :--- | :--- |\r\n| Suite Name | [partition_test/run1](https://cylchub/services/cylc-review/cycles/mike.hobson/?suite=partition_test%2Frun1) |\r\n| Suite User | mike.hobson |\r\n| Workflow Start | 2026-01-29T06:08:00 |\r\n| Groups Run | all |\r\n\r\n| Dependency | Reference | Main Like |\r\n| :--- | :--- | :--- |\r\n| lfric_core | [mike-hobson/lfric_core@add_uneven_partition_test](https://github.com/mike-hobson/lfric_core/tree/add_uneven_partition_test) | False |\r\n| SimSys_Scripts | [MetOffice/SimSys_Scripts@2025.12.1](https://github.com/MetOffice/SimSys_Scripts/tree/2025.12.1) | True |\r\n\r\n## Task Information\r\n:white_check_mark: succeeded tasks - 372\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](mailto:ToolsCollabDevTeam@metoffice.gov.uk)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 254, "repository": "MetOffice/lfric_core", "title": "Improve partitioner unit tests", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/254"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkdKkg", "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["stevemullerworth", "MatthewHambley", "james-bruten-mo", "mo-rickywong"], "status": "In Progress", "title": "Improve partitioner unit tests"}, {"assignees": ["james-bruten-mo"], "code Review": "t00sa", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @t00sa \r\n\r\n\r\n\r\nInstead of using a hard-coded list of ignored files when rsyncing, generate a list of ignored files using `git status --ignored -s` and use this instead.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [x] This change has been tested appropriately (please describe)\r\n\r\nTested by running against lfric_apps vn3.0 test suite\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [x] Sensitive data is properly handled (if applicable)\r\n- [x] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [x] All dependencies have been resolved\r\n- [x] Related Issues have been properly linked and addressed\r\n- [x] Code quality standards have been met\r\n- [x] Tests are adequate and have passed\r\n- [x] Security considerations have been addressed\r\n- [x] Performance impact is acceptable\r\n\r\n", "number": 170, "repository": "MetOffice/SimSys_Scripts", "title": "Git ignore", "type": "PullRequest", "url": "https://github.com/MetOffice/SimSys_Scripts/pull/170"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkdehc", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/SimSys_Scripts", "reviewers": ["t00sa"], "status": "Done", "title": "Git ignore"}, {"assignees": ["thomasmelvin"], "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: \r\n\r\n\r\n\r\n\r\n\r\nCore branch to allow the use of the multigrid preconditioner on the mixed system\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid understanding and enhance the readability of the code\r\n- [ ] My changes generate no new warnings\r\n- [ ] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](mailto:ToolsCollabDevTeam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 255, "repository": "MetOffice/lfric_core", "title": "Mixed multigrid", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/255"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkdgpY", "labels": ["cla-required"], "repository": "https://github.com/MetOffice/lfric_core", "status": "In Progress", "title": "Mixed multigrid"}, {"assignees": ["thomasmelvin"], "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: \r\n\r\n\r\n\r\n\r\n\r\nAllow the multigrid preconditioner to be used on the mixed system of equations\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid understanding and enhance the readability of the code\r\n- [ ] My changes generate no new warnings\r\n- [ ] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](toolscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 197, "repository": "MetOffice/lfric_apps", "title": "Mixed multigrid", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/197"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkdhdo", "labels": ["cla-required"], "milestone": {"description": "Code Review deadline is 25th September 2026 (SciTech review to be completed by this date)", "dueOn": "2026-11-04T00:00:00Z", "title": "Autumn 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "status": "In Progress", "title": "Mixed multigrid"}, {"assignees": ["andrewcoughtrie"], "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: \r\n\r\n\r\n\r\n\r\n\r\nThis change sets the PR and CI documentation building to only happen when files in the documentation directory are changed or any of the workflow files. I believe leaving the running to happen if ANY of the workflow yaml files are changed is a safer option than trying to specify specific ones.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](mailto:ToolsCollabDevTeam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 256, "repository": "MetOffice/lfric_core", "title": "Only build docs when docs files changed", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/256"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkdxEk", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_core", "reviewers": ["yaswant"], "status": "In Progress", "title": "Only build docs when docs files changed"}, {"assignees": ["andrewcoughtrie"], "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: Not Required \r\nCode Reviewer: \r\n\r\n\r\n\r\n\r\n\r\nThis change sets the PR and CI documentation building to only happen when files in the documentation directory are changed or any of the workflow files. I believe leaving the running to happen if ANY of the workflow yaml files are changed is a safer option than trying to specify specific ones.\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](toolscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 198, "repository": "MetOffice/lfric_apps", "title": "Only build docs when docs files changed", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/198"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkdzlM", "milestone": {"description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", "dueOn": "2026-03-04T00:00:00Z", "title": "Spring 2026"}, "repository": "https://github.com/MetOffice/lfric_apps", "status": "In Progress", "title": "Only build docs when docs files changed"}, {"assignees": ["Pierre-siddall"], "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: \r\n\r\n\r\n\r\n\r\n\r\nThis PR unifies the linting of fortran across the repository by adding a fortran linter to the CI/CD pipeline and adding a fortitude.toml file to configure the fortran quality standards across LFRic apps. \r\n\r\n\r\n\r\n\r\n\r\ncloses #199 \r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Apps rose-stem suite\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](toolscollabdevteam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 200, "repository": "MetOffice/lfric_apps", "title": "Add fortran linting workflow", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_apps/pull/200"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkd8pA", "labels": ["enhancement", "cla-signed"], "repository": "https://github.com/MetOffice/lfric_apps", "status": "In Progress", "title": "Add fortran linting workflow"}, {"assignees": ["Pierre-siddall"], "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: \r\n\r\n\r\n\r\n\r\n\r\nThis PR unifies the linting of fortran across the repository by adding a fortran linter to the CI/CD pipeline and adding a fortitude.toml file to configure the fortran quality standards across LFRic apps. \r\n\r\n\r\n\r\n\r\n\r\ncloses #257 \r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [x] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [x] Comments have been included that aid understanding and enhance the readability of the code\r\n- [x] My changes generate no new warnings\r\n- [x] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the LFRic Core rose-stem suite\r\n- [ ] If required (e.g. API changes) I have also run the LFRic Apps test suite using this branch\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (e.g. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (e.g. system tests, unit tests, etc.)\r\n- [ ] Any new tests have been assigned an appropriate amount of compute resource and have been allocated to an appropriate testing group (i.e. the developer tests are for jobs which use a small amount of compute resource and complete in a matter of minutes)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [x] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [x] Performance of the code has been considered and, if applicable, suitable performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [x] Where appropriate I have updated documentation related to this change and confirmed that it builds correctly\r\n\r\n## PSyclone Approval\r\n\r\n- [ ] If you have edited any PSyclone-related code (e.g. PSyKAl-lite, Kernel interface, optimisation scripts, LFRic data structure code) then please contact the [TCD Team](mailto:ToolsCollabDevTeam@metoffice.gov.uk)\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 258, "repository": "MetOffice/lfric_core", "title": "Add fortran linter", "type": "PullRequest", "url": "https://github.com/MetOffice/lfric_core/pull/258"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkd97A", "labels": ["cla-signed"], "repository": "https://github.com/MetOffice/lfric_core", "status": "In Progress", "title": "Add fortran linter"}, {"assignees": ["jennyhickson"], "code Review": "james-bruten-mo", "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: @james-bruten-mo \r\n\r\n\r\n\r\n\r\n\r\nI've pulled the code for interacting with a github project into its own module as I would like to use this for a new script too. I've refactored workload.py to use this, and modified the interface to hopefully make it a little more generic. I've also removed the hardcoded list of repositories from workload.py, instead now including columns in the SSD table for all repos that have PRs in the project so that everything is included. This is lots at the moment as we had some wide-reaching workflow updates, but hopefully in the future this will actually reduce the size of the table to not include empty columns. \r\n\r\nI've also updated the repository list in the manage milestones list to be more complete and fixed a bug with \"'s. \r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n- [x] I have performed a self-review of my own code\r\n- [ ] My code follows the project's [style guidelines](https://metoffice.github.io/lfric_core/how_to_contribute/index.html#how-to-contribute-index)\r\n- [ ] Comments have been included that aid understanding and enhance the readability of the code\r\n- [ ] My changes generate no new warnings\r\n- [ ] All automated checks in the CI pipeline have completed successfully\r\n\r\n## Testing\r\n\r\n- [ ] This change has been tested appropriately (please describe)\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise, Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) (including attribution labels)\r\n\r\n\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n(_Please alert the code reviewer via a tag when you have approved the SR_)\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n\r\n", "number": 171, "repository": "MetOffice/SimSys_Scripts", "title": "Refactor workload.py", "type": "PullRequest", "url": "https://github.com/MetOffice/SimSys_Scripts/pull/171"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkeNkQ", "repository": "https://github.com/MetOffice/SimSys_Scripts", "reviewers": ["james-bruten-mo"], "status": "Code Review", "title": "Refactor workload.py"}, {"assignees": ["maggiehendry"], "content": {"body": "# PR Summary\r\n\r\nSci/Tech Reviewer: \r\nCode Reviewer: \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n## Code Quality Checklist\r\n\r\n(_Some checks are automatically carried out via the CI pipeline_)\r\n\r\n- [ ] I have performed a self-review of my own code\r\n- [ ] My code follows the project's style guidelines\r\n- [ ] Comments have been included that aid undertanding and enhance the\r\n readability of the code\r\n- [ ] My changes generate no new warnings\r\n- [ ] If editing `rose-meta/jules-shared` then have you supplied a linked UM PR?\r\n\r\n## Testing\r\n\r\n- [ ] I have tested this change locally, using the JULES rose-stem suite\r\n- [ ] If shared files have been modified, I have run the UM and LFRic Apps rose\r\n stem suites\r\n- [ ] If any tests fail (rose-stem or CI) the reason is understood and\r\n acceptable (eg. kgo changes)\r\n- [ ] I have added tests to cover new functionality as appropriate (eg. system\r\n tests, unit tests, etc.)\r\n\r\n\r\n\r\n### trac.log\r\n\r\n\r\n\r\n## Security Considerations\r\n\r\n- [ ] I have reviewed my changes for potential security issues\r\n- [ ] Sensitive data is properly handled (if applicable)\r\n- [ ] Authentication and authorisation are properly implemented (if applicable)\r\n\r\n## Performance Impact\r\n\r\n- [ ] Performance of the code has been considered and, if applicable, suitable\r\n performance measurements have been conducted\r\n\r\n## AI Assistance and Attribution\r\n\r\n- [ ] Some of the content of this change has been produced with the assistance\r\n of _Generative AI tool name_ (e.g., Met Office Github Copilot Enterprise,\r\n Github Copilot Personal, ChatGPT GPT-4, etc) and I have followed the\r\n [Simulation Systems AI policy](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html)\r\n (including attribution labels)\r\n\r\n\r\n\r\n## Documentation\r\n\r\n- [ ] Where appropriate I have updated documentation related to this change and\r\n confirmed that it builds correctly\r\n\r\n## Approvals\r\n\r\nPlease request all relevant approvals. See the CodeOwners.txt file for section\r\nowners.\r\n\r\n### Technical\r\n\r\n- [ ] JULES Code Owner\r\n- [ ] OpenMP\r\n- [ ] River Routing\r\n- [ ] Rose Stem\r\n- [ ] Rose Metadata\r\n- [ ] Upgrade Macros\r\n\r\n### Scientific\r\n\r\n- [ ] Surface\r\n- [ ] Hydrology\r\n- [ ] Vegetation\r\n- [ ] Veg3 RED Demography\r\n- [ ] Biogechemistry\r\n- [ ] Biogenic fluxes\r\n- [ ] Fire\r\n- [ ] Lakes\r\n- [ ] Evaluation\r\n- [ ] Imogen\r\n\r\n# Sci/Tech Review\r\n\r\n\r\n\r\n\r\n- [ ] I understand this area of code and the changes being added\r\n- [ ] The proposed changes correspond to the pull request description\r\n- [ ] Documentation is sufficient (do documentation papers need updating)\r\n- [ ] Sufficient testing has been completed\r\n\r\n_Please alert the code reviewer via a tag when you have approved the SR_\r\n\r\n# Code Review\r\n\r\n\r\n\r\n- [ ] All dependencies have been resolved\r\n- [ ] Related Issues have been properly linked and addressed\r\n- [ ] CLA compliance has been confirmed\r\n- [ ] Code quality standards have been met\r\n- [ ] Tests are adequate and have passed\r\n- [ ] Documentation is complete and accurate\r\n- [ ] Security considerations have been addressed\r\n- [ ] Performance impact is acceptable\r\n", "number": 42, "repository": "MetOffice/jules", "title": "Migrate jules_pftparm metadata to jules-shared", "type": "PullRequest", "url": "https://github.com/MetOffice/jules/pull/42"}, "id": "PVTI_lADOAGrG5M4A_OAXzgkeuwo", "labels": ["cla-signed"], "repository": "https://github.com/MetOffice/jules", "status": "In Progress", "title": "Migrate jules_pftparm metadata to jules-shared"}], "totalCount": 223} \ No newline at end of file +{ + "items": [ + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "jennyhickson", + "content": { + "number": 9, + "repository": "MetOffice/gcom", + "title": "add project workflow", + "type": "PullRequest", + "url": "https://github.com/MetOffice/gcom/pull/9" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgji2FI", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/gcom", + "reviewers": [ + "jennyhickson" + ], + "status": "Done", + "title": "add project workflow" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "jennyhickson", + "content": { + "number": 9, + "repository": "MetOffice/moci", + "title": "add project workflow", + "type": "PullRequest", + "url": "https://github.com/MetOffice/moci/pull/9" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgji1pg", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/moci", + "reviewers": [ + "jennyhickson" + ], + "status": "Done", + "title": "add project workflow" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "jennyhickson", + "content": { + "number": 2, + "repository": "MetOffice/um_aux", + "title": "Add project workflow", + "type": "PullRequest", + "url": "https://github.com/MetOffice/um_aux/pull/2" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjizd0", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/um_aux", + "reviewers": [ + "jennyhickson" + ], + "status": "Done", + "title": "Add project workflow" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "jennyhickson", + "content": { + "number": 11, + "repository": "MetOffice/socrates", + "title": "add project workflow", + "type": "PullRequest", + "url": "https://github.com/MetOffice/socrates/pull/11" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjiw9s", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/socrates", + "reviewers": [ + "jennyhickson" + ], + "status": "Done", + "title": "add project workflow" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "jennyhickson", + "content": { + "number": 7, + "repository": "MetOffice/casim", + "title": "add project workflow", + "type": "PullRequest", + "url": "https://github.com/MetOffice/casim/pull/7" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjiwcY", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/casim", + "reviewers": [ + "jennyhickson" + ], + "status": "Done", + "title": "add project workflow" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "jennyhickson", + "content": { + "number": 10, + "repository": "MetOffice/um_doc", + "title": "add project workflow", + "type": "PullRequest", + "url": "https://github.com/MetOffice/um_doc/pull/10" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjit60", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/um_doc", + "reviewers": [ + "jennyhickson" + ], + "status": "Done", + "title": "add project workflow" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "jennyhickson", + "content": { + "number": 21, + "repository": "MetOffice/um", + "title": "add project workflow", + "type": "PullRequest", + "url": "https://github.com/MetOffice/um/pull/21" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjithY", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/um", + "reviewers": [ + "jennyhickson" + ], + "status": "Done", + "title": "add project workflow" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "jennyhickson", + "content": { + "number": 160, + "repository": "MetOffice/SimSys_Scripts", + "title": "add project workflow", + "type": "PullRequest", + "url": "https://github.com/MetOffice/SimSys_Scripts/pull/160" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjir5A", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/SimSys_Scripts", + "reviewers": [ + "jennyhickson" + ], + "status": "Done", + "title": "add project workflow" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "jennyhickson", + "content": { + "number": 17, + "repository": "MetOffice/shumlib", + "title": "add project workflow", + "type": "PullRequest", + "url": "https://github.com/MetOffice/shumlib/pull/17" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjiqFE", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/shumlib", + "reviewers": [ + "jennyhickson" + ], + "status": "Done", + "title": "add project workflow" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "jennyhickson", + "content": { + "number": 15, + "repository": "MetOffice/mule", + "title": "add project workflow", + "type": "PullRequest", + "url": "https://github.com/MetOffice/mule/pull/15" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjipwA", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/mule", + "reviewers": [ + "jennyhickson" + ], + "status": "Done", + "title": "add project workflow" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "jennyhickson", + "content": { + "number": 27, + "repository": "MetOffice/jules", + "title": "add project workflow", + "type": "PullRequest", + "url": "https://github.com/MetOffice/jules/pull/27" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjimwE", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/jules", + "reviewers": [ + "jennyhickson" + ], + "status": "Done", + "title": "add project workflow" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "jennyhickson", + "content": { + "number": 4, + "repository": "MetOffice/socrates-spectral", + "title": "add project workflow", + "type": "PullRequest", + "url": "https://github.com/MetOffice/socrates-spectral/pull/4" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjixqk", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/socrates-spectral", + "reviewers": [ + "jennyhickson" + ], + "status": "Done", + "title": "add project workflow" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "jennyhickson", + "content": { + "number": 551, + "repository": "MetOffice/simulation-systems", + "title": "add project workflow", + "type": "PullRequest", + "url": "https://github.com/MetOffice/simulation-systems/pull/551" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjitHE", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/simulation-systems", + "reviewers": [ + "jennyhickson" + ], + "status": "Done", + "title": "add project workflow" + }, + { + "assignees": [ + "yaswant", + "james-bruten-mo", + "cameronbateman-mo" + ], + "content": { + "number": 72, + "repository": "MetOffice/git_playground", + "title": "added python script and github workflow for auto assigning pr reviewers", + "type": "PullRequest", + "url": "https://github.com/MetOffice/git_playground/pull/72" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgfbFi4", + "repository": "https://github.com/MetOffice/git_playground", + "reviewers": [ + "james-bruten-mo", + "yaswant" + ], + "sciTech Review": "james-bruten-mo", + "status": "SciTech Review", + "title": "added python script and github workflow for auto assigning pr reviewers" + }, + { + "assignees": [ + "r-sharp", + "cameronbateman-mo" + ], + "content": { + "number": 104, + "repository": "MetOffice/SimSys_Scripts", + "title": "added bash script to automate jules kgo process.", + "type": "PullRequest", + "url": "https://github.com/MetOffice/SimSys_Scripts/pull/104" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzge8FcQ", + "repository": "https://github.com/MetOffice/SimSys_Scripts", + "reviewers": [ + "r-sharp", + "ericaneininger" + ], + "status": "SciTech Review", + "title": "added bash script to automate jules kgo process." + }, + { + "assignees": [ + "yaswant", + "cameronbateman-mo" + ], + "content": { + "number": 55, + "repository": "MetOffice/git_playground", + "title": "added auto PR assigner", + "type": "PullRequest", + "url": "https://github.com/MetOffice/git_playground/pull/55" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgerEIU", + "repository": "https://github.com/MetOffice/git_playground", + "status": "Code Review", + "title": "added auto PR assigner" + }, + { + "assignees": [ + "yaswant" + ], + "content": { + "number": 27, + "repository": "MetOffice/growss", + "title": "Optimise validation action", + "type": "PullRequest", + "url": "https://github.com/MetOffice/growss/pull/27" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzghMYH0", + "labels": [ + "CI" + ], + "repository": "https://github.com/MetOffice/growss", + "status": "SciTech Review", + "title": "Optimise validation action" + }, + { + "assignees": [ + "yaswant" + ], + "content": { + "number": 99, + "repository": "MetOffice/git_playground", + "title": "Demo growss build/deploy workflows", + "type": "PullRequest", + "url": "https://github.com/MetOffice/git_playground/pull/99" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzghQCy4", + "labels": [ + "cla-required" + ], + "repository": "https://github.com/MetOffice/git_playground", + "status": "SciTech Review", + "title": "Demo growss build/deploy workflows" + }, + { + "assignees": [ + "Pierre-siddall" + ], + "code Review": "james-bruten-mo", + "content": { + "number": 101, + "repository": "MetOffice/git_playground", + "title": "Test fortran linter", + "type": "PullRequest", + "url": "https://github.com/MetOffice/git_playground/pull/101" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzghY6mc", + "labels": [ + "enhancement", + "cla-signed", + "CI", + "contributor" + ], + "repository": "https://github.com/MetOffice/git_playground", + "reviewers": [ + "james-bruten-mo" + ], + "status": "Code Review", + "title": "Test fortran linter" + }, + { + "assignees": [ + "yaswant" + ], + "content": { + "number": 500, + "repository": "MetOffice/simulation-systems", + "title": "Use reusable workflow to build and deploy sphinx docs", + "type": "PullRequest", + "url": "https://github.com/MetOffice/simulation-systems/pull/500" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzghhhQo", + "labels": [ + ":blue_book:Documentation" + ], + "repository": "https://github.com/MetOffice/simulation-systems", + "status": "SciTech Review", + "title": "Use reusable workflow to build and deploy sphinx docs" + }, + { + "assignees": [ + "dcaseGH" + ], + "code Review": "cameronbateman-mo", + "content": { + "number": 15, + "repository": "MetOffice/jules", + "title": "JASMIN site migration for JULES - git", + "type": "PullRequest", + "url": "https://github.com/MetOffice/jules/pull/15" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgiM9qU", + "repository": "https://github.com/MetOffice/jules", + "reviewers": [ + "james-bruten-mo" + ], + "sciTech Review": "james-bruten-mo", + "status": "SciTech Review", + "title": "JASMIN site migration for JULES - git" + }, + { + "assignees": [ + "mo-rickywong" + ], + "code Review": "MatthewHambley", + "content": { + "number": 175, + "repository": "MetOffice/lfric_core", + "title": "Reworked Configuration Namelist Access API", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/175" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgiZyxI", + "labels": [ + "cla-signed" + ], + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "MatthewHambley", + "stevemullerworth", + "mike-hobson", + "andrewcoughtrie", + "EdHone", + "MatthewHambley", + "allynt", + "MatthewHambley" + ], + "sciTech Review": "allynt", + "status": "Done", + "title": "Reworked Configuration Namelist Access API" + }, + { + "assignees": [ + "yaswant" + ], + "code Review": "james-bruten-mo", + "content": { + "number": 529, + "repository": "MetOffice/simulation-systems", + "title": "Add GitHub Copilot instructions", + "type": "PullRequest", + "url": "https://github.com/MetOffice/simulation-systems/pull/529" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgieVuU", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/simulation-systems", + "reviewers": [ + "james-bruten-mo" + ], + "status": "Done", + "title": "Add GitHub Copilot instructions" + }, + { + "assignees": [ + "yaswant" + ], + "code Review": "jennyhickson", + "content": { + "number": 530, + "repository": "MetOffice/simulation-systems", + "title": "Local deploy config", + "type": "PullRequest", + "url": "https://github.com/MetOffice/simulation-systems/pull/530" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgiebbQ", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/simulation-systems", + "reviewers": [ + "jennyhickson", + "jennyhickson" + ], + "status": "Done", + "title": "Local deploy config" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "jennyhickson", + "content": { + "number": 531, + "repository": "MetOffice/simulation-systems", + "title": "update um release instructions", + "type": "PullRequest", + "url": "https://github.com/MetOffice/simulation-systems/pull/531" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgifuu8", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/simulation-systems", + "reviewers": [ + "jennyhickson", + "jennyhickson" + ], + "status": "Done", + "title": "update um release instructions" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "jennyhickson", + "content": { + "number": 146, + "repository": "MetOffice/SimSys_Scripts", + "title": "switch rsyncs", + "type": "PullRequest", + "url": "https://github.com/MetOffice/SimSys_Scripts/pull/146" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgifv8c", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/SimSys_Scripts", + "reviewers": [ + "jennyhickson" + ], + "status": "Done", + "title": "switch rsyncs" + }, + { + "assignees": [ + "jennyhickson" + ], + "code Review": "james-bruten-mo", + "content": { + "number": 147, + "repository": "MetOffice/SimSys_Scripts", + "title": "Workload debug", + "type": "PullRequest", + "url": "https://github.com/MetOffice/SimSys_Scripts/pull/147" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgigYaI", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/SimSys_Scripts", + "reviewers": [ + "james-bruten-mo" + ], + "status": "Done", + "title": "Workload debug" + }, + { + "content": { + "number": 182, + "repository": "MetOffice/lfric_core", + "title": "Codeowners update", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/182" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgigxXk", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "mike-hobson" + ], + "status": "Done", + "title": "Codeowners update" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "content": { + "number": 43, + "repository": "MetOffice/lfric_apps", + "title": "fix local build script", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/43" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgig0XM", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "jennyhickson" + ], + "status": "Done", + "title": "fix local build script" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "yaswant", + "content": { + "number": 46, + "repository": "MetOffice/growss", + "title": "remove labelling when cla already signed on base", + "type": "PullRequest", + "url": "https://github.com/MetOffice/growss/pull/46" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgilBmY", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/growss", + "reviewers": [ + "yaswant" + ], + "status": "Done", + "title": "remove labelling when cla already signed on base" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "jennyhickson", + "content": { + "number": 534, + "repository": "MetOffice/simulation-systems", + "title": "SSH Passphrase Advice", + "type": "PullRequest", + "url": "https://github.com/MetOffice/simulation-systems/pull/534" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgilIpg", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/simulation-systems", + "reviewers": [ + "jennyhickson" + ], + "status": "Done", + "title": "SSH Passphrase Advice" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "yaswant", + "content": { + "number": 14, + "repository": "MetOffice/mule", + "title": "add shumlib testing", + "type": "PullRequest", + "url": "https://github.com/MetOffice/mule/pull/14" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgilpZg", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/mule", + "reviewers": [ + "yaswant", + "yaswant" + ], + "status": "Done", + "title": "add shumlib testing" + }, + { + "content": { + "number": 185, + "repository": "MetOffice/lfric_core", + "title": "Add some words about the reason for testing", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/185" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgimF7A", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "allynt", + "allynt" + ], + "status": "Done", + "title": "Add some words about the reason for testing" + }, + { + "code Review": "james-bruten-mo", + "content": { + "number": 148, + "repository": "MetOffice/SimSys_Scripts", + "title": "check_macro_chains to fail gracefully on FCM", + "type": "PullRequest", + "url": "https://github.com/MetOffice/SimSys_Scripts/pull/148" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgimes0", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/SimSys_Scripts", + "reviewers": [ + "james-bruten-mo" + ], + "status": "Done", + "title": "check_macro_chains to fail gracefully on FCM" + }, + { + "assignees": [ + "tinyendian" + ], + "code Review": "EdHone", + "content": { + "number": 53, + "repository": "MetOffice/lfric_apps", + "title": "Additional PC2 optimisations for NG-ARCH", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/53" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgioBpQ", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "MetBenjaminWent" + ], + "sciTech Review": "MetBenjaminWent", + "status": "Changes Requested", + "title": "Additional PC2 optimisations for NG-ARCH" + }, + { + "assignees": [ + "mo-lottieturner" + ], + "code Review": "mo-alistairp", + "content": { + "number": 54, + "repository": "MetOffice/lfric_apps", + "title": "Removing populate_graph_lfricinputs.cylc", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/54" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgipEyc", + "labels": [ + "cla-signed", + "LFRic Inputs" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "james-bruten-mo", + "mo-alistairp", + "mo-alistairp" + ], + "sciTech Review": "james-bruten-mo", + "status": "Done", + "title": "Removing populate_graph_lfricinputs.cylc" + }, + { + "assignees": [ + "ukmo-juan-castillo" + ], + "code Review": "mo-lottieturner", + "content": { + "number": 55, + "repository": "MetOffice/lfric_apps", + "title": "Generation of lfric2lfric lbcs", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/55" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgipHzg", + "labels": [ + "cla-signed", + "LFRic Inputs" + ], + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "mike-hobson", + "mike-hobson", + "mo-lottieturner", + "mo-lottieturner" + ], + "sciTech Review": "mike-hobson", + "status": "Code Review", + "title": "Generation of lfric2lfric lbcs" + }, + { + "assignees": [ + "MetBenjaminWent" + ], + "code Review": "mo-lottieturner", + "content": { + "number": 56, + "repository": "MetOffice/lfric_apps", + "title": "Transmute explicit no Transformation list and global.py", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/56" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgipIv4", + "labels": [ + "cla-modified" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "oakleybrunt", + "oakleybrunt", + "mo-lottieturner" + ], + "sciTech Review": "oakleybrunt", + "status": "Approved", + "title": "Transmute explicit no Transformation list and global.py" + }, + { + "assignees": [ + "MetBenjaminWent" + ], + "code Review": "mo-lucy-gordon", + "content": { + "number": 57, + "repository": "MetOffice/lfric_apps", + "title": "Some of Boundary Layer PSyclone-d", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/57" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgipJBQ", + "labels": [ + "cla-modified" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "jcsmeto", + "mo-lucy-gordon", + "christophermaynard", + "mo-lucy-gordon" + ], + "sciTech Review": "jcsmeto", + "status": "Approved", + "title": "Some of Boundary Layer PSyclone-d" + }, + { + "code Review": "yaswant", + "content": { + "number": 537, + "repository": "MetOffice/simulation-systems", + "title": "add new FAQs", + "type": "PullRequest", + "url": "https://github.com/MetOffice/simulation-systems/pull/537" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgipTjc", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/simulation-systems", + "reviewers": [ + "yaswant" + ], + "status": "Done", + "title": "add new FAQs" + }, + { + "assignees": [ + "mo-lottieturner" + ], + "code Review": "allynt", + "content": { + "number": 187, + "repository": "MetOffice/lfric_core", + "title": "Adding logging to tweak_iodef", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/187" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgip0Is", + "labels": [ + "cla-signed" + ], + "repository": "https://github.com/MetOffice/lfric_core", + "status": "SciTech Review", + "title": "Adding logging to tweak_iodef" + }, + { + "content": { + "number": 188, + "repository": "MetOffice/lfric_core", + "title": "Update root Readme file.", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/188" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgip2Q0", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "yaswant", + "mike-hobson" + ], + "status": "Done", + "title": "Update root Readme file." + }, + { + "assignees": [ + "MetBenjaminWent" + ], + "content": { + "number": 62, + "repository": "MetOffice/lfric_apps", + "title": "Boundary Layer - bdy_expl2 optimisations", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/62" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgiqBQo", + "labels": [ + "cla-required" + ], + "repository": "https://github.com/MetOffice/lfric_apps", + "status": "SciTech Review", + "title": "Boundary Layer - bdy_expl2 optimisations" + }, + { + "content": { + "number": 63, + "repository": "MetOffice/lfric_apps", + "title": "Remove user contact question from issue template", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/63" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgiqEBU", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "james-bruten-mo" + ], + "status": "Done", + "title": "Remove user contact question from issue template" + }, + { + "content": { + "number": 189, + "repository": "MetOffice/lfric_core", + "title": "Remove contact details from Issue template", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/189" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgiqGFo", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "andrewcoughtrie" + ], + "status": "Done", + "title": "Remove contact details from Issue template" + }, + { + "assignees": [ + "andrewcoughtrie" + ], + "code Review": "stevemullerworth", + "content": { + "number": 190, + "repository": "MetOffice/lfric_core", + "title": "Fixed duplication of directory ownership, should have been a differen\u2026", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/190" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgiqVsY", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "yaswant", + "stevemullerworth" + ], + "sciTech Review": "yaswant", + "status": "Done", + "title": "Fixed duplication of directory ownership, should have been a differen\u2026" + }, + { + "assignees": [ + "jasonjunweilyu" + ], + "code Review": "MetBenjaminWent", + "content": { + "number": 65, + "repository": "MetOffice/lfric_apps", + "title": "Stochastic Physics CPU and GPU Optimizations - NGARCH", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/65" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgiroos", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "mo-alistairp", + "mo-alistairp", + "MetBenjaminWent", + "MetBenjaminWent", + "MetBenjaminWent" + ], + "sciTech Review": "mo-alistairp", + "status": "Done", + "title": "Stochastic Physics CPU and GPU Optimizations - NGARCH" + }, + { + "code Review": "mo-rickywong", + "content": { + "number": 191, + "repository": "MetOffice/lfric_core", + "title": "Fail gracefully if the configuration namelist doesn't exist", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/191" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgisRIQ", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "stevemullerworth", + "andrewcoughtrie", + "mo-rickywong", + "EdHone", + "MatthewHambley", + "MatthewHambley" + ], + "sciTech Review": "andrewcoughtrie", + "status": "Done", + "title": "Fail gracefully if the configuration namelist doesn't exist" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "content": { + "number": 47, + "repository": "MetOffice/growss", + "title": "Remove label", + "type": "PullRequest", + "url": "https://github.com/MetOffice/growss/pull/47" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgisU60", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/growss", + "reviewers": [ + "yaswant", + "andrewcoughtrie" + ], + "status": "Done", + "title": "Remove label" + }, + { + "content": { + "number": 48, + "repository": "MetOffice/growss", + "title": "Remove label", + "type": "PullRequest", + "url": "https://github.com/MetOffice/growss/pull/48" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgisl4Y", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/growss", + "status": "Done", + "title": "Remove label" + }, + { + "code Review": "mo-rickywong", + "content": { + "number": 67, + "repository": "MetOffice/lfric_apps", + "title": "Check config name", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/67" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgis7KA", + "labels": [ + "enhancement", + "Linked Core", + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "mo-rickywong" + ], + "sciTech Review": "andrewcoughtrie", + "status": "Done", + "title": "Check config name" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "content": { + "number": 149, + "repository": "MetOffice/SimSys_Scripts", + "title": "update to use bash -l", + "type": "PullRequest", + "url": "https://github.com/MetOffice/SimSys_Scripts/pull/149" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgis_zo", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/SimSys_Scripts", + "reviewers": [ + "t00sa" + ], + "status": "Done", + "title": "update to use bash -l" + }, + { + "content": { + "number": 22, + "repository": "MetOffice/jules", + "title": "Coupling of WHAM! model of human fire use and management with INFERNO", + "type": "PullRequest", + "url": "https://github.com/MetOffice/jules/pull/22" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgitYHw", + "labels": [ + "cla-signed" + ], + "repository": "https://github.com/MetOffice/jules", + "status": "SciTech Review", + "title": "Coupling of WHAM! model of human fire use and management with INFERNO" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "jennyhickson", + "content": { + "number": 540, + "repository": "MetOffice/simulation-systems", + "title": "add note to enable stable", + "type": "PullRequest", + "url": "https://github.com/MetOffice/simulation-systems/pull/540" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgitc0Q", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/simulation-systems", + "reviewers": [ + "jennyhickson" + ], + "status": "Done", + "title": "add note to enable stable" + }, + { + "assignees": [ + "tommbendall" + ], + "code Review": "allynt", + "content": { + "number": 69, + "repository": "MetOffice/lfric_apps", + "title": "Correct the sample_physics_winds_correction option", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/69" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgitsto", + "labels": [ + "bug", + "Linked Core", + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "atb1995", + "allynt" + ], + "sciTech Review": "atb1995", + "status": "Code Review", + "title": "Correct the sample_physics_winds_correction option" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "content": { + "number": 150, + "repository": "MetOffice/SimSys_Scripts", + "title": "respect gitignore", + "type": "PullRequest", + "url": "https://github.com/MetOffice/SimSys_Scripts/pull/150" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgitymk", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/SimSys_Scripts", + "reviewers": [ + "t00sa" + ], + "status": "Done", + "title": "respect gitignore" + }, + { + "assignees": [ + "yaswant" + ], + "code Review": "MatthewHambley", + "content": { + "number": 2, + "repository": "MetOffice/rose_picker", + "title": "Tidy up repo and add checks", + "type": "PullRequest", + "url": "https://github.com/MetOffice/rose_picker/pull/2" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgiuLSs", + "labels": [ + "enhancement" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/rose_picker", + "reviewers": [ + "MatthewHambley", + "MatthewHambley", + "james-bruten-mo", + "james-bruten-mo" + ], + "sciTech Review": "james-bruten-mo", + "status": "Done", + "title": "Tidy up repo and add checks" + }, + { + "assignees": [ + "DrTVockerodtMO" + ], + "code Review": "james-bruten-mo", + "content": { + "number": 71, + "repository": "MetOffice/lfric_apps", + "title": "Fixing adjoint failures with transport log_space config variable set to true", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/71" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgiuvmk", + "labels": [ + "bug", + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "allynt", + "tom-j-h" + ], + "sciTech Review": "tom-j-h", + "status": "Done", + "title": "Fixing adjoint failures with transport log_space config variable set to true" + }, + { + "assignees": [ + "DrTVockerodtMO" + ], + "code Review": "harry-shepherd", + "content": { + "number": 72, + "repository": "MetOffice/lfric_apps", + "title": "Introducing cache for adjoint lookup tables", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/72" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgiuzc0", + "labels": [ + "enhancement", + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "harry-shepherd", + "mo-joshuacolclough" + ], + "sciTech Review": "mo-joshuacolclough", + "status": "Done", + "title": "Introducing cache for adjoint lookup tables" + }, + { + "content": { + "number": 151, + "repository": "MetOffice/SimSys_Scripts", + "title": "Revert \"respect gitignore\"", + "type": "PullRequest", + "url": "https://github.com/MetOffice/SimSys_Scripts/pull/151" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgivXGk", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/SimSys_Scripts", + "status": "Done", + "title": "Revert \"respect gitignore\"" + }, + { + "content": { + "number": 193, + "repository": "MetOffice/lfric_core", + "title": "Change TM to R", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/193" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgivYho", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "yaswant" + ], + "status": "Done", + "title": "Change TM to R" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "content": { + "number": 152, + "repository": "MetOffice/SimSys_Scripts", + "title": "Rsync exclude", + "type": "PullRequest", + "url": "https://github.com/MetOffice/SimSys_Scripts/pull/152" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgivsg8", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/SimSys_Scripts", + "reviewers": [ + "t00sa" + ], + "status": "Done", + "title": "Rsync exclude" + }, + { + "assignees": [ + "tommbendall", + "mo-marqh" + ], + "code Review": "mo-marqh", + "content": { + "number": 74, + "repository": "MetOffice/lfric_apps", + "title": "Fix Gungho Plots", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/74" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgivx3w", + "labels": [ + "bug", + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "jameskent-metoffice", + "mo-marqh", + "mo-marqh", + "mo-marqh" + ], + "status": "Done", + "title": "Fix Gungho Plots" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "andrewcoughtrie", + "content": { + "number": 194, + "repository": "MetOffice/lfric_core", + "title": "Update gitignore", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/194" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgiv4t0", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "andrewcoughtrie", + "andrewcoughtrie" + ], + "status": "Done", + "title": "Update gitignore" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "andrewcoughtrie", + "content": { + "number": 75, + "repository": "MetOffice/lfric_apps", + "title": "update gitignore", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/75" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgiv48M", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "andrewcoughtrie" + ], + "status": "Done", + "title": "update gitignore" + }, + { + "content": { + "number": 49, + "repository": "MetOffice/growss", + "title": "Remove label", + "type": "PullRequest", + "url": "https://github.com/MetOffice/growss/pull/49" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgiv-mw", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/growss", + "status": "Done", + "title": "Remove label" + }, + { + "assignees": [ + "mike-hobson" + ], + "code Review": "svadams ", + "content": { + "number": 198, + "repository": "MetOffice/lfric_core", + "title": "Reusing xt xmap", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/198" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgiwo0o", + "labels": [ + "enhancement", + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "MatthewHambley", + "MatthewHambley", + "svadams", + "svadams", + "MatthewHambley" + ], + "sciTech Review": "MatthewHambley", + "status": "Done", + "title": "Reusing xt xmap" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "yaswant", + "content": { + "number": 50, + "repository": "MetOffice/growss", + "title": "update cla action", + "type": "PullRequest", + "url": "https://github.com/MetOffice/growss/pull/50" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgixAD8", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/growss", + "reviewers": [ + "yaswant" + ], + "status": "Done", + "title": "update cla action" + }, + { + "assignees": [ + "r-sharp" + ], + "code Review": "yaswant", + "content": { + "number": 153, + "repository": "MetOffice/SimSys_Scripts", + "title": "Umdp3 checker in python", + "type": "PullRequest", + "url": "https://github.com/MetOffice/SimSys_Scripts/pull/153" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgixAEw", + "labels": [ + "CI", + "git-migration" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/SimSys_Scripts", + "reviewers": [ + "jennyhickson", + "jennyhickson", + "yaswant" + ], + "sciTech Review": "jennyhickson", + "status": "Done", + "title": "Umdp3 checker in python" + }, + { + "content": { + "number": 107, + "repository": "MetOffice/git_playground", + "title": "Demonstrate cla", + "type": "PullRequest", + "url": "https://github.com/MetOffice/git_playground/pull/107" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgiyoGc", + "labels": [ + "cla-signed", + "contributor" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/git_playground", + "status": "Done", + "title": "Demonstrate cla" + }, + { + "content": { + "number": 108, + "repository": "MetOffice/git_playground", + "title": "demonstrate edited contributors", + "type": "PullRequest", + "url": "https://github.com/MetOffice/git_playground/pull/108" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgiypHE", + "labels": [ + "contributor" + ], + "repository": "https://github.com/MetOffice/git_playground", + "status": "SciTech Review", + "title": "demonstrate edited contributors" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "yaswant", + "content": { + "number": 51, + "repository": "MetOffice/growss", + "title": "Update the cla-check ", + "type": "PullRequest", + "url": "https://github.com/MetOffice/growss/pull/51" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgiyp2U", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/growss", + "reviewers": [ + "yaswant", + "yaswant" + ], + "status": "Done", + "title": "Update the cla-check " + }, + { + "assignees": [ + "oakleybrunt", + "MetBenjaminWent" + ], + "content": { + "number": 78, + "repository": "MetOffice/lfric_apps", + "title": "Signed CLA", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/78" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgiy3wQ", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "MetBenjaminWent", + "MetBenjaminWent" + ], + "status": "Done", + "title": "Signed CLA" + }, + { + "assignees": [ + "mo-andymalcolm", + "mo-saracusworth" + ], + "code Review": "ericaneininger", + "content": { + "number": 8, + "repository": "MetOffice/gcom", + "title": "7 - Add routines needed for nudging", + "type": "PullRequest", + "url": "https://github.com/MetOffice/gcom/pull/8" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgi4SVA", + "repository": "https://github.com/MetOffice/gcom", + "reviewers": [ + "ericaneininger", + "mo-saracusworth" + ], + "sciTech Review": "mo-saracusworth", + "status": "SciTech Review", + "title": "7 - Add routines needed for nudging" + }, + { + "assignees": [ + "jedbakerMO" + ], + "code Review": "mo-rickywong", + "content": { + "number": 80, + "repository": "MetOffice/lfric_apps", + "title": "Timing Mod wrapper rewrite", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/80" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjDOPA", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "christophermaynard", + "mo-rickywong", + "mo-rickywong" + ], + "sciTech Review": "christophermaynard", + "status": "Done", + "title": "Timing Mod wrapper rewrite" + }, + { + "assignees": [ + "jedbakerMO" + ], + "code Review": "mo-rickywong", + "content": { + "number": 201, + "repository": "MetOffice/lfric_core", + "title": "Timing Mod wrapper rewrite", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/201" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjDx7Q", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "mo-rickywong", + "christophermaynard" + ], + "sciTech Review": "christophermaynard", + "status": "Done", + "title": "Timing Mod wrapper rewrite" + }, + { + "assignees": [ + "t00sa" + ], + "code Review": "t00sa", + "content": { + "number": 82, + "repository": "MetOffice/lfric_apps", + "title": "Performance test config", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/82" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjHS9I", + "labels": [ + "cla-modified" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "harry-shepherd", + "t00sa" + ], + "sciTech Review": "harry-shepherd", + "status": "Done", + "title": "Performance test config" + }, + { + "assignees": [ + "oakleybrunt" + ], + "code Review": "cameronbateman-mo", + "content": { + "number": 83, + "repository": "MetOffice/lfric_apps", + "title": "Update UKCA initialisation for dust only to include segment size", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/83" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjNliU", + "labels": [ + "KGO", + "cla-modified" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "alanjhewitt", + "cameronbateman-mo" + ], + "sciTech Review": "alanjhewitt", + "status": "Done", + "title": "Update UKCA initialisation for dust only to include segment size" + }, + { + "code Review": "james-bruten-mo", + "content": { + "number": 154, + "repository": "MetOffice/SimSys_Scripts", + "title": "Fix bug with extra whitespace", + "type": "PullRequest", + "url": "https://github.com/MetOffice/SimSys_Scripts/pull/154" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjNmlo", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/SimSys_Scripts", + "reviewers": [ + "james-bruten-mo" + ], + "status": "Done", + "title": "Fix bug with extra whitespace" + }, + { + "code Review": "ericaneininger", + "content": { + "number": 204, + "repository": "MetOffice/lfric_core", + "title": "reducing post-processing of XIOS output", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/204" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjSRtQ", + "labels": [ + "cla-signed" + ], + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "EdHone" + ], + "sciTech Review": "EdHone", + "status": "Changes Requested", + "title": "reducing post-processing of XIOS output" + }, + { + "assignees": [ + "mo-marqh" + ], + "code Review": "ericaneininger", + "content": { + "number": 90, + "repository": "MetOffice/lfric_apps", + "title": "File metadata and Forecast reference Time Scalar to reduce post processing from lfric core", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/90" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjSRt8", + "labels": [ + "cla-signed" + ], + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "EdHone" + ], + "sciTech Review": "EdHone", + "status": "Changes Requested", + "title": "File metadata and Forecast reference Time Scalar to reduce post processing from lfric core" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "jennyhickson", + "content": { + "number": 52, + "repository": "MetOffice/growss", + "title": "Action to move PRs through project state", + "type": "PullRequest", + "url": "https://github.com/MetOffice/growss/pull/52" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjVJNs", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/growss", + "reviewers": [ + "yaswant", + "jennyhickson", + "t00sa" + ], + "sciTech Review": "yaswant", + "status": "Done", + "title": "Action to move PRs through project state" + }, + { + "assignees": [ + "alanjhewitt" + ], + "code Review": "cameronbateman-mo", + "content": { + "number": 94, + "repository": "MetOffice/lfric_apps", + "title": "Bug in AOD diagnostics", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/94" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjVKD8", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "melissaebrooks", + "cameronbateman-mo" + ], + "sciTech Review": "melissaebrooks", + "status": "Done", + "title": "Bug in AOD diagnostics" + }, + { + "assignees": [ + "jennyhickson" + ], + "code Review": "james-bruten-mo", + "content": { + "number": 155, + "repository": "MetOffice/SimSys_Scripts", + "title": "Milestone manager", + "type": "PullRequest", + "url": "https://github.com/MetOffice/SimSys_Scripts/pull/155" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjVcPM", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/SimSys_Scripts", + "reviewers": [ + "yaswant", + "james-bruten-mo" + ], + "sciTech Review": "yaswant", + "status": "Done", + "title": "Milestone manager" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "content": { + "number": 53, + "repository": "MetOffice/growss", + "title": "Project edit action", + "type": "PullRequest", + "url": "https://github.com/MetOffice/growss/pull/53" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjV2Cw", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/growss", + "status": "Done", + "title": "Project edit action" + }, + { + "assignees": [ + "Pierre-siddall" + ], + "code Review": "james-bruten-mo", + "content": { + "number": 158, + "repository": "MetOffice/SimSys_Scripts", + "title": "Fix suite report", + "type": "PullRequest", + "url": "https://github.com/MetOffice/SimSys_Scripts/pull/158" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjYe2E", + "labels": [ + "enhancement" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/SimSys_Scripts", + "reviewers": [ + "james-bruten-mo", + "james-bruten-mo", + "james-bruten-mo" + ], + "status": "Done", + "title": "Fix suite report" + }, + { + "code Review": "Pierre-siddall", + "content": { + "number": 96, + "repository": "MetOffice/lfric_apps", + "title": "Add Harry Shepherd to CONTRIBUTORS.md", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/96" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjYo8E", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "Pierre-siddall" + ], + "status": "Done", + "title": "Add Harry Shepherd to CONTRIBUTORS.md" + }, + { + "code Review": "Pierre-siddall", + "content": { + "number": 207, + "repository": "MetOffice/lfric_core", + "title": "Add Harry Shepherd to CONTRIBUTORS.md", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/207" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjYpJY", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "Pierre-siddall" + ], + "status": "Done", + "title": "Add Harry Shepherd to CONTRIBUTORS.md" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "yaswant", + "content": { + "number": 55, + "repository": "MetOffice/growss", + "title": "make grep case insensitive", + "type": "PullRequest", + "url": "https://github.com/MetOffice/growss/pull/55" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjYzSk", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/growss", + "reviewers": [ + "yaswant" + ], + "status": "Done", + "title": "make grep case insensitive" + }, + { + "assignees": [ + "bblay-mo" + ], + "content": { + "number": 98, + "repository": "MetOffice/lfric_apps", + "title": "S20 Diags: geopot thickness", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/98" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjZLG0", + "labels": [ + "cla-signed" + ], + "repository": "https://github.com/MetOffice/lfric_apps", + "status": "In Progress", + "title": "S20 Diags: geopot thickness" + }, + { + "assignees": [ + "ricky-lv426" + ], + "code Review": "ericaneininger", + "content": { + "number": 99, + "repository": "MetOffice/lfric_apps", + "title": "Gregory-Rowntree convection - PSyclone optimisation and conversion from CELL_COLUMN to DOMAIN kernel", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/99" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjZbG8", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "ericaneininger", + "MetBenjaminWent", + "ericaneininger" + ], + "sciTech Review": "MetBenjaminWent", + "status": "Done", + "title": "Gregory-Rowntree convection - PSyclone optimisation and conversion from CELL_COLUMN to DOMAIN kernel" + }, + { + "assignees": [ + "Adrian-Lock" + ], + "code Review": "ericaneininger", + "content": { + "number": 101, + "repository": "MetOffice/lfric_apps", + "title": "Remove redundant options and restructure code in ex_coef to be easier to follow and modify further in future", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/101" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjZkl0", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "P-Burns", + "ericaneininger" + ], + "sciTech Review": "P-Burns", + "status": "Code Review", + "title": "Remove redundant options and restructure code in ex_coef to be easier to follow and modify further in future" + }, + { + "code Review": "mike-hobson ", + "content": { + "number": 208, + "repository": "MetOffice/lfric_core", + "title": "Remove references to FCM following Git migration", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/208" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjZ1xU", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "mike-hobson", + "mike-hobson" + ], + "status": "Done", + "title": "Remove references to FCM following Git migration" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "Pierre-siddall", + "content": { + "number": 102, + "repository": "MetOffice/lfric_apps", + "title": "update symlink", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/102" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjb0M0", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "Pierre-siddall", + "yaswant" + ], + "status": "Done", + "title": "update symlink" + }, + { + "code Review": "@MatthewHambley", + "content": { + "number": 210, + "repository": "MetOffice/lfric_core", + "title": "Remove additional leading space from make message calls", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/210" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjcOBI", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "MatthewHambley", + "stevemullerworth" + ], + "status": "Done", + "title": "Remove additional leading space from make message calls" + }, + { + "assignees": [ + "yaswant" + ], + "code Review": "andrewcoughtrie", + "content": { + "number": 211, + "repository": "MetOffice/lfric_core", + "title": "Reformat pull request template", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/211" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjc3Vk", + "labels": [ + "cla-modified" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "andrewcoughtrie", + "andrewcoughtrie", + "andrewcoughtrie" + ], + "status": "Done", + "title": "Reformat pull request template" + }, + { + "assignees": [ + "yaswant" + ], + "content": { + "number": 109, + "repository": "MetOffice/lfric_apps", + "title": "Reformat pull request template", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/109" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjdFRk", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "james-bruten-mo" + ], + "status": "Done", + "title": "Reformat pull request template" + }, + { + "code Review": "james-bruten-mo", + "content": { + "number": 550, + "repository": "MetOffice/simulation-systems", + "title": "Rework support request section", + "type": "PullRequest", + "url": "https://github.com/MetOffice/simulation-systems/pull/550" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjh2xU", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/simulation-systems", + "reviewers": [ + "james-bruten-mo" + ], + "status": "Done", + "title": "Rework support request section" + }, + { + "assignees": [ + "EdHone" + ], + "code Review": "MatthewHambley", + "content": { + "number": 212, + "repository": "MetOffice/lfric_core", + "title": "Take XIOS file frequency configuration from iodef.xml where possible", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/212" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjh81A", + "labels": [ + "cla-modified" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "svadams", + "MatthewHambley", + "stevemullerworth", + "mike-hobson", + "andrewcoughtrie", + "mo-rickywong", + "yaswant" + ], + "sciTech Review": "svadams", + "status": "Code Review", + "title": "Take XIOS file frequency configuration from iodef.xml where possible" + }, + { + "code Review": "james-bruten-mo", + "content": { + "number": 159, + "repository": "MetOffice/SimSys_Scripts", + "title": "Remove hardcoded review team", + "type": "PullRequest", + "url": "https://github.com/MetOffice/SimSys_Scripts/pull/159" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjh9IU", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/SimSys_Scripts", + "reviewers": [ + "james-bruten-mo" + ], + "status": "Done", + "title": "Remove hardcoded review team" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "jennyhickson", + "content": { + "number": 117, + "repository": "MetOffice/lfric_apps", + "title": "Add project workflow", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/117" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjild0", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "jennyhickson" + ], + "status": "Done", + "title": "Add project workflow" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "jennyhickson", + "content": { + "number": 214, + "repository": "MetOffice/lfric_core", + "title": "add project workflow", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/214" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjingc", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "jennyhickson", + "andrewcoughtrie", + "yaswant" + ], + "status": "Done", + "title": "add project workflow" + }, + { + "assignees": [ + "yaswant" + ], + "code Review": "@james-bruten-mo", + "content": { + "number": 161, + "repository": "MetOffice/SimSys_Scripts", + "title": "update superlinter", + "type": "PullRequest", + "url": "https://github.com/MetOffice/SimSys_Scripts/pull/161" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjj2vY", + "labels": [ + "CI" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/SimSys_Scripts", + "reviewers": [ + "james-bruten-mo", + "james-bruten-mo" + ], + "status": "Done", + "title": "update superlinter" + }, + { + "content": { + "number": 22, + "repository": "MetOffice/um", + "title": "Gm consolidate nudging", + "type": "PullRequest", + "url": "https://github.com/MetOffice/um/pull/22" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjlVRc", + "repository": "https://github.com/MetOffice/um", + "status": "SciTech Review", + "title": "Gm consolidate nudging" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "ericaneininger", + "content": { + "number": 162, + "repository": "MetOffice/SimSys_Scripts", + "title": "bump timeout", + "type": "PullRequest", + "url": "https://github.com/MetOffice/SimSys_Scripts/pull/162" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjmHNM", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/SimSys_Scripts", + "reviewers": [ + "ericaneininger" + ], + "status": "Done", + "title": "bump timeout" + }, + { + "assignees": [ + "bblay-mo" + ], + "content": { + "number": 120, + "repository": "MetOffice/lfric_apps", + "title": "S20 Diags: snow prob", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/120" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjmOns", + "labels": [ + "cla-signed" + ], + "repository": "https://github.com/MetOffice/lfric_apps", + "status": "In Progress", + "title": "S20 Diags: snow prob" + }, + { + "assignees": [ + "jennyhickson" + ], + "code Review": "yaswant", + "content": { + "number": 163, + "repository": "MetOffice/SimSys_Scripts", + "title": "new test file", + "type": "PullRequest", + "url": "https://github.com/MetOffice/SimSys_Scripts/pull/163" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjm_lw", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/SimSys_Scripts", + "reviewers": [ + "yaswant" + ], + "status": "Done", + "title": "new test file" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "jennyhickson", + "content": { + "number": 122, + "repository": "MetOffice/lfric_apps", + "title": "raise error successfully from extract_source", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/122" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjpNyM", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "t00sa", + "jennyhickson" + ], + "sciTech Review": "t00sa", + "status": "Done", + "title": "raise error successfully from extract_source" + }, + { + "assignees": [ + "tom-j-h" + ], + "code Review": "TeranIvy", + "content": { + "number": 123, + "repository": "MetOffice/lfric_apps", + "title": "Align `adjoint_tests` to `linear_model`", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/123" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjpdoY", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "DrTVockerodtMO", + "DrTVockerodtMO", + "TeranIvy", + "TeranIvy", + "TeranIvy" + ], + "sciTech Review": "DrTVockerodtMO", + "status": "Done", + "title": "Align `adjoint_tests` to `linear_model`" + }, + { + "content": { + "number": 131, + "repository": "MetOffice/lfric_apps", + "title": "Hotfix to rose-stem suite", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/131" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjprHs", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "james-bruten-mo" + ], + "status": "Done", + "title": "Hotfix to rose-stem suite" + }, + { + "assignees": [ + "tom-j-h" + ], + "code Review": "stevemullerworth", + "content": { + "number": 132, + "repository": "MetOffice/lfric_apps", + "title": "jelf adjoint test tolerance namelist variable", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/132" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjpu_0", + "labels": [ + "macro", + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "mo-joshuacolclough", + "stevemullerworth", + "ss421", + "matthewrmshin" + ], + "sciTech Review": "mo-joshuacolclough", + "status": "Code Review", + "title": "jelf adjoint test tolerance namelist variable" + }, + { + "assignees": [ + "mcdalvi" + ], + "code Review": "oakleybrunt", + "content": { + "number": 133, + "repository": "MetOffice/lfric_apps", + "title": "#81: Fix unallocated arrays in `ukca_volcanic_so2`", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/133" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjpvvY", + "labels": [ + "bug", + "cla-signed" + ], + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "oakleybrunt" + ], + "sciTech Review": "alanjhewitt", + "status": "Done", + "title": "#81: Fix unallocated arrays in `ukca_volcanic_so2`" + }, + { + "assignees": [ + "mo-lucy-gordon" + ], + "code Review": "Pierre-siddall", + "content": { + "number": 217, + "repository": "MetOffice/lfric_core", + "title": "Adding fortitude", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/217" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjqGao", + "labels": [ + "cla-signed" + ], + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "mo-rickywong", + "james-bruten-mo" + ], + "sciTech Review": "james-bruten-mo", + "status": "Changes Requested", + "title": "Adding fortitude" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "content": { + "number": 555, + "repository": "MetOffice/simulation-systems", + "title": "hotfix release notes", + "type": "PullRequest", + "url": "https://github.com/MetOffice/simulation-systems/pull/555" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjqllE", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/simulation-systems", + "reviewers": [ + "jennyhickson" + ], + "status": "Done", + "title": "hotfix release notes" + }, + { + "assignees": [ + "mo-marqh" + ], + "code Review": "mo-lottieturner", + "content": { + "number": 218, + "repository": "MetOffice/lfric_core", + "title": "Small fixes to better enable running with XIOS 3", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/218" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjqqfo", + "labels": [ + "cla-modified" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "mo-marqh", + "mo-lottieturner", + "MatthewHambley", + "stevemullerworth", + "mike-hobson", + "andrewcoughtrie", + "mo-rickywong", + "yaswant" + ], + "sciTech Review": "mo-marqh", + "status": "Done", + "title": "Small fixes to better enable running with XIOS 3" + }, + { + "assignees": [ + "mo-andymalcolm" + ], + "code Review": "r-sharp", + "content": { + "number": 24, + "repository": "MetOffice/um", + "title": "Climate diags opt omp", + "type": "PullRequest", + "url": "https://github.com/MetOffice/um/pull/24" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjqsQ8", + "repository": "https://github.com/MetOffice/um", + "status": "SciTech Review", + "title": "Climate diags opt omp" + }, + { + "assignees": [ + "mo-jmanners" + ], + "content": { + "number": 12, + "repository": "MetOffice/socrates", + "title": "Tidy up references to FCM", + "type": "PullRequest", + "url": "https://github.com/MetOffice/socrates/pull/12" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjq2XY", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/socrates", + "reviewers": [ + "james-bruten-mo" + ], + "status": "Done", + "title": "Tidy up references to FCM" + }, + { + "assignees": [ + "yaswant" + ], + "code Review": "@james-bruten-mo", + "content": { + "number": 164, + "repository": "MetOffice/SimSys_Scripts", + "title": "Refactor run_command error handling", + "type": "PullRequest", + "url": "https://github.com/MetOffice/SimSys_Scripts/pull/164" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjq5SY", + "labels": [ + "enhancement" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/SimSys_Scripts", + "reviewers": [ + "james-bruten-mo" + ], + "status": "Done", + "title": "Refactor run_command error handling" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "content": { + "number": 114, + "repository": "MetOffice/git_playground", + "title": "Test cla from stable", + "type": "PullRequest", + "url": "https://github.com/MetOffice/git_playground/pull/114" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjtF5s", + "labels": [ + "contributor" + ], + "repository": "https://github.com/MetOffice/git_playground", + "status": "In Progress", + "title": "Test cla from stable" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "content": { + "number": 115, + "repository": "MetOffice/git_playground", + "title": "Test from main", + "type": "PullRequest", + "url": "https://github.com/MetOffice/git_playground/pull/115" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjtIAc", + "labels": [ + "contributor", + "cla-modified" + ], + "repository": "https://github.com/MetOffice/git_playground", + "status": "In Progress", + "title": "Test from main" + }, + { + "code Review": "mike-hobson", + "content": { + "number": 137, + "repository": "MetOffice/lfric_apps", + "title": "118 ostia ice ancils", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/137" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjtONI", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "DanCopsey" + ], + "sciTech Review": "DanCopsey", + "status": "SciTech Review", + "title": "118 ostia ice ancils" + }, + { + "assignees": [ + "thomasmelvin" + ], + "code Review": "christophermaynard", + "content": { + "number": 138, + "repository": "MetOffice/lfric_apps", + "title": "Decompose across panels", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/138" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjtTzI", + "labels": [ + "KGO", + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "christophermaynard", + "tommbendall" + ], + "sciTech Review": "tommbendall", + "status": "Code Review", + "title": "Decompose across panels" + }, + { + "assignees": [ + "thomasmelvin" + ], + "code Review": "christophermaynard", + "content": { + "number": 220, + "repository": "MetOffice/lfric_core", + "title": "Decompose across panels", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/220" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjtbTI", + "labels": [ + "Linked Apps", + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "mo-rickywong", + "mike-hobson", + "christophermaynard", + "tommbendall" + ], + "sciTech Review": "tommbendall", + "status": "Code Review", + "title": "Decompose across panels" + }, + { + "assignees": [ + "caroduro" + ], + "code Review": "Pierre-siddall", + "content": { + "number": 29, + "repository": "MetOffice/jules", + "title": "Bug fix for a correct calculation of Newton-Raphson [issue 28]", + "type": "PullRequest", + "url": "https://github.com/MetOffice/jules/pull/29" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjtplI", + "labels": [ + "cla-signed" + ], + "repository": "https://github.com/MetOffice/jules", + "reviewers": [], + "status": "SciTech Review", + "title": "Bug fix for a correct calculation of Newton-Raphson [issue 28]" + }, + { + "assignees": [ + "thomasmelvin" + ], + "code Review": "mo-lucy-gordon", + "content": { + "number": 139, + "repository": "MetOffice/lfric_apps", + "title": "Refactor of damping layer matrix", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/139" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjtrr4", + "labels": [ + "KGO", + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "jameskent-metoffice", + "mo-lucy-gordon" + ], + "sciTech Review": "jameskent-metoffice", + "status": "Code Review", + "title": "Refactor of damping layer matrix" + }, + { + "assignees": [ + "yaswant" + ], + "content": { + "number": 140, + "repository": "MetOffice/lfric_apps", + "title": "Add workflow to block direct merges to the stable branch", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/140" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjtsP8", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "andrewcoughtrie" + ], + "status": "Done", + "title": "Add workflow to block direct merges to the stable branch" + }, + { + "assignees": [ + "tom-j-h" + ], + "code Review": "stevemullerworth", + "content": { + "number": 142, + "repository": "MetOffice/lfric_apps", + "title": "Floating-point precision conversions in jelf", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/142" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjtzv8", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "mo-joshuacolclough", + "stevemullerworth", + "ss421", + "matthewrmshin" + ], + "sciTech Review": "mo-joshuacolclough", + "status": "Code Review", + "title": "Floating-point precision conversions in jelf" + }, + { + "code Review": "@mike-hobson", + "content": { + "number": 143, + "repository": "MetOffice/lfric_apps", + "title": "Fix coupled model with 32bit compilation", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/143" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjuC1Y", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "mike-hobson" + ], + "status": "Done", + "title": "Fix coupled model with 32bit compilation" + }, + { + "assignees": [ + "mo-marqh" + ], + "code Review": "EdHone", + "content": { + "number": 144, + "repository": "MetOffice/lfric_apps", + "title": "buffer_size_factor: fix broken XIOS attribute name in XML configs", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/144" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjuJ5E", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "EdHone", + "EdHone" + ], + "sciTech Review": "harry-shepherd", + "status": "Done", + "title": "buffer_size_factor: fix broken XIOS attribute name in XML configs" + }, + { + "assignees": [ + "DrTVockerodtMO" + ], + "code Review": "mo-lottieturner", + "content": { + "number": 145, + "repository": "MetOffice/lfric_apps", + "title": "Speed-up of adjoint transport", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/145" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjuPxk", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "tom-j-h", + "tom-j-h", + "mo-lottieturner" + ], + "sciTech Review": "tom-j-h", + "status": "Code Review", + "title": "Speed-up of adjoint transport" + }, + { + "assignees": [ + "tommbendall" + ], + "code Review": "allynt", + "content": { + "number": 221, + "repository": "MetOffice/lfric_core", + "title": "Fix Correction to Sampling Physics Winds", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/221" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjuXjo", + "labels": [ + "bug", + "Linked Apps", + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "atb1995", + "allynt" + ], + "sciTech Review": "atb1995", + "status": "Code Review", + "title": "Fix Correction to Sampling Physics Winds" + }, + { + "assignees": [ + "MetBenjaminWent" + ], + "content": { + "number": 147, + "repository": "MetOffice/lfric_apps", + "title": "cla signed ", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/147" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjuiZY", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "yaswant" + ], + "status": "Done", + "title": "cla signed " + }, + { + "assignees": [ + "tommbendall" + ], + "code Review": "cameronbateman-mo", + "content": { + "number": 222, + "repository": "MetOffice/lfric_core", + "title": "Fix averaging kernel used in stochastic physics filter", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/222" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgju1p4", + "labels": [ + "bug", + "Linked Apps", + "KGO", + "cla-signed" + ], + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "thomasmelvin", + "cameronbateman-mo" + ], + "sciTech Review": "thomasmelvin", + "status": "Code Review", + "title": "Fix averaging kernel used in stochastic physics filter" + }, + { + "assignees": [ + "tommbendall" + ], + "code Review": "cameronbateman-mo", + "content": { + "number": 148, + "repository": "MetOffice/lfric_apps", + "title": "Stochastic Physics Fixes", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/148" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgju66U", + "labels": [ + "bug", + "Linked Core", + "KGO", + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "mo-claudiosanchez", + "oakleybrunt", + "cameronbateman-mo" + ], + "sciTech Review": "mo-claudiosanchez", + "status": "Code Review", + "title": "Stochastic Physics Fixes" + }, + { + "assignees": [ + "cjohnson-pi", + "mo-marqh" + ], + "code Review": "mo-marqh", + "content": { + "number": 149, + "repository": "MetOffice/lfric_apps", + "title": "Split mol with transport_efficiency", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/149" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjxALo", + "labels": [ + "KGO", + "macro", + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "jameskent-metoffice", + "mo-marqh" + ], + "status": "Code Review", + "title": "Split mol with transport_efficiency" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "content": { + "number": 165, + "repository": "MetOffice/SimSys_Scripts", + "title": "Fix export", + "type": "PullRequest", + "url": "https://github.com/MetOffice/SimSys_Scripts/pull/165" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjxAe4", + "labels": [ + "bug" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/SimSys_Scripts", + "reviewers": [ + "yaswant", + "yaswant" + ], + "status": "Done", + "title": "Fix export" + }, + { + "assignees": [ + "mo-alistairp" + ], + "code Review": "MetBenjaminWent", + "content": { + "number": 223, + "repository": "MetOffice/lfric_core", + "title": "Add GH_SCALAR_ARRAY to argument_mod", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/223" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjxqXs", + "labels": [ + "enhancement", + "cla-signed" + ], + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "TeranIvy", + "TeranIvy", + "MetBenjaminWent" + ], + "status": "Code Review", + "title": "Add GH_SCALAR_ARRAY to argument_mod" + }, + { + "assignees": [ + "mo-lucy-gordon" + ], + "code Review": "Pierre-siddall", + "content": { + "number": 150, + "repository": "MetOffice/lfric_apps", + "title": "Adding fortitude", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/150" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjxrDM", + "labels": [ + "cla-signed" + ], + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "james-bruten-mo" + ], + "sciTech Review": "james-bruten-mo", + "status": "Changes Requested", + "title": "Adding fortitude" + }, + { + "assignees": [ + "Pierre-siddall" + ], + "code Review": "james-bruten-mo", + "content": { + "number": 16, + "repository": "MetOffice/moci", + "title": "Add CR checking workflow to CI/CD Pipeline", + "type": "PullRequest", + "url": "https://github.com/MetOffice/moci/pull/16" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjx82M", + "labels": [ + "enhancement", + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/moci", + "reviewers": [ + "james-bruten-mo" + ], + "status": "Done", + "title": "Add CR checking workflow to CI/CD Pipeline" + }, + { + "assignees": [ + "cjohnson-pi" + ], + "code Review": "r-sharp", + "content": { + "number": 153, + "repository": "MetOffice/lfric_apps", + "title": "Remove redundant info from mesh configs", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/153" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgjytLQ", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "r-sharp" + ], + "status": "Code Review", + "title": "Remove redundant info from mesh configs" + }, + { + "assignees": [ + "cjohnson-pi" + ], + "code Review": "stevemullerworth", + "content": { + "number": 154, + "repository": "MetOffice/lfric_apps", + "title": "Linear 32bit", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/154" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgj33Mg", + "labels": [ + "KGO", + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "tom-j-h", + "stevemullerworth" + ], + "sciTech Review": "tom-j-h", + "status": "Code Review", + "title": "Linear 32bit" + }, + { + "assignees": [ + "Pierre-siddall" + ], + "content": { + "number": 17, + "repository": "MetOffice/moci", + "title": "Move pylint.rc", + "type": "PullRequest", + "url": "https://github.com/MetOffice/moci/pull/17" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgj39oM", + "labels": [ + "cla-signed" + ], + "repository": "https://github.com/MetOffice/moci", + "status": "In Progress", + "title": "Move pylint.rc" + }, + { + "assignees": [ + "mo-alistairp" + ], + "content": { + "number": 155, + "repository": "MetOffice/lfric_apps", + "title": "Sign contributors", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/155" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgj4DXE", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "status": "Done", + "title": "Sign contributors" + }, + { + "assignees": [ + "tom-j-h" + ], + "code Review": "mike-hobson", + "content": { + "number": 227, + "repository": "MetOffice/lfric_core", + "title": "Avoid `panel_decomposition_mod` causing a divide-by-zero", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/227" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgj5JPM", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "mo-rickywong", + "mike-hobson", + "thomasmelvin", + "thomasmelvin", + "mike-hobson" + ], + "sciTech Review": "thomasmelvin", + "status": "Done", + "title": "Avoid `panel_decomposition_mod` causing a divide-by-zero" + }, + { + "assignees": [ + "tom-j-h" + ], + "code Review": "mike-hobson", + "content": { + "number": 156, + "repository": "MetOffice/lfric_apps", + "title": "Align jedi_lfric_tests linear model/adjoint testing to adjoint_tests and linear_model", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/156" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgj5NCY", + "labels": [ + "KGO", + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "ss421", + "ss421", + "mike-hobson", + "matthewrmshin" + ], + "sciTech Review": "ss421", + "status": "Code Review", + "title": "Align jedi_lfric_tests linear model/adjoint testing to adjoint_tests and linear_model" + }, + { + "assignees": [ + "mo-jmanners" + ], + "code Review": "yaswant", + "content": { + "number": 158, + "repository": "MetOffice/lfric_apps", + "title": "Add a COSP timestep so diagnostics can be sampled less often", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/158" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgj8TOw", + "labels": [ + "macro", + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "Petzi1", + "yaswant" + ], + "sciTech Review": "Petzi1", + "status": "Code Review", + "title": "Add a COSP timestep so diagnostics can be sampled less often" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "content": { + "number": 16, + "repository": "MetOffice/ukca", + "title": "add track review project", + "type": "PullRequest", + "url": "https://github.com/MetOffice/ukca/pull/16" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgj8jNQ", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/ukca", + "reviewers": [ + "jennyhickson" + ], + "status": "Done", + "title": "add track review project" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "content": { + "number": 4, + "repository": "MetOffice/um_meta", + "title": "add project tracker", + "type": "PullRequest", + "url": "https://github.com/MetOffice/um_meta/pull/4" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgj8kcI", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/um_meta", + "reviewers": [ + "jennyhickson" + ], + "status": "Done", + "title": "add project tracker" + }, + { + "assignees": [ + "mike-hobson" + ], + "code Review": "svadams", + "content": { + "number": 228, + "repository": "MetOffice/lfric_core", + "title": "Update exchange_map_collection with copyright header", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/228" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgj8vEk", + "labels": [ + "cla-signed" + ], + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "MatthewHambley", + "svadams" + ], + "status": "Code Review", + "title": "Update exchange_map_collection with copyright header" + }, + { + "assignees": [ + "tom-j-h" + ], + "code Review": "mo-alistairp", + "content": { + "number": 161, + "repository": "MetOffice/lfric_apps", + "title": "Adjoint test initialised from realistic increment in jelf", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/161" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgj8vdU", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "mo-joshuacolclough", + "mo-alistairp", + "ss421", + "matthewrmshin" + ], + "sciTech Review": "mo-joshuacolclough", + "status": "Code Review", + "title": "Adjoint test initialised from realistic increment in jelf" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "t00sa", + "content": { + "number": 162, + "repository": "MetOffice/lfric_apps", + "title": "Reenable incremental builds", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/162" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgj8-6k", + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "MatthewHambley", + "MatthewHambley", + "MatthewHambley", + "t00sa" + ], + "sciTech Review": "MatthewHambley", + "status": "Code Review", + "title": "Reenable incremental builds" + }, + { + "assignees": [ + "Pierre-siddall" + ], + "code Review": "ericaneininger", + "content": { + "number": 19, + "repository": "MetOffice/moci", + "title": "Move shell out commands into separate library", + "type": "PullRequest", + "url": "https://github.com/MetOffice/moci/pull/19" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgj9CO0", + "labels": [ + "cla-signed" + ], + "repository": "https://github.com/MetOffice/moci", + "reviewers": [ + "ericaneininger", + "ericaneininger" + ], + "status": "Code Review", + "title": "Move shell out commands into separate library" + }, + { + "assignees": [ + "tom-j-h" + ], + "code Review": "jennyhickson", + "content": { + "number": 163, + "repository": "MetOffice/lfric_apps", + "title": "C224 adjoint tests in jelf", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/163" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgj9Nd8", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "mo-joshuacolclough", + "jennyhickson", + "ss421", + "matthewrmshin" + ], + "sciTech Review": "mo-joshuacolclough", + "status": "Code Review", + "title": "C224 adjoint tests in jelf" + }, + { + "assignees": [ + "tommbendall" + ], + "code Review": "MatthewHambley", + "content": { + "number": 165, + "repository": "MetOffice/lfric_apps", + "title": "Allow outputting of vertical height in W0 and W2H function spaces", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/165" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgj9gpY", + "labels": [ + "enhancement", + "Linked Core", + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "jameskent-metoffice", + "MatthewHambley" + ], + "sciTech Review": "jameskent-metoffice", + "status": "Code Review", + "title": "Allow outputting of vertical height in W0 and W2H function spaces" + }, + { + "assignees": [ + "tommbendall" + ], + "code Review": "MatthewHambley", + "content": { + "number": 229, + "repository": "MetOffice/lfric_core", + "title": "Allow computation and storage of height at W0", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/229" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgj9iHk", + "labels": [ + "enhancement", + "Linked Apps", + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "jameskent-metoffice", + "MatthewHambley" + ], + "sciTech Review": "jameskent-metoffice", + "status": "Code Review", + "title": "Allow computation and storage of height at W0" + }, + { + "assignees": [ + "t00sa" + ], + "code Review": "r-sharp", + "content": { + "number": 166, + "repository": "MetOffice/lfric_apps", + "title": "Add support for monsoon 3", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/166" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgj9nCo", + "labels": [ + "cla-signed" + ], + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "james-bruten-mo" + ], + "sciTech Review": "james-bruten-mo", + "status": "Changes Requested", + "title": "Add support for monsoon 3" + }, + { + "assignees": [ + "EdHone" + ], + "code Review": "mo-lucy-gordon", + "content": { + "number": 231, + "repository": "MetOffice/lfric_core", + "title": "Enable reading for cyclic data files using temporal controller", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/231" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgj-OEc", + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "harry-shepherd" + ], + "sciTech Review": "harry-shepherd", + "status": "Code Review", + "title": "Enable reading for cyclic data files using temporal controller" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "yaswant", + "content": { + "number": 56, + "repository": "MetOffice/growss", + "title": "Fix labelling logic", + "type": "PullRequest", + "url": "https://github.com/MetOffice/growss/pull/56" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgj_mJ8", + "labels": [ + "bug" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/growss", + "reviewers": [ + "yaswant" + ], + "status": "Done", + "title": "Fix labelling logic" + }, + { + "assignees": [ + "EdHone" + ], + "code Review": "mo-lucy-gordon", + "content": { + "number": 232, + "repository": "MetOffice/lfric_core", + "title": "IO_Demo benchmarking configuration", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/232" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkAIYs", + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "MatthewHambley", + "stevemullerworth", + "andrewcoughtrie", + "mo-lucy-gordon", + "mo-rickywong", + "james-bruten-mo" + ], + "sciTech Review": "andrewcoughtrie", + "status": "Code Review", + "title": "IO_Demo benchmarking configuration" + }, + { + "assignees": [ + "ppharris" + ], + "code Review": "james-bruten-mo", + "content": { + "number": 35, + "repository": "MetOffice/jules", + "title": "Rose stem fixes for cehwl site", + "type": "PullRequest", + "url": "https://github.com/MetOffice/jules/pull/35" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkAlGo", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/jules", + "reviewers": [ + "james-bruten-mo" + ], + "status": "Done", + "title": "Rose stem fixes for cehwl site" + }, + { + "assignees": [ + "jameskent-metoffice" + ], + "code Review": "cameronbateman-mo", + "content": { + "number": 171, + "repository": "MetOffice/lfric_apps", + "title": "Added Stability with Advective Tracers", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/171" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkApM8", + "labels": [ + "macro", + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "thomasmelvin", + "cameronbateman-mo", + "ss421", + "matthewrmshin" + ], + "sciTech Review": "thomasmelvin", + "status": "Approved", + "title": "Added Stability with Advective Tracers" + }, + { + "assignees": [ + "mike-hobson", + "mo-marqh" + ], + "code Review": "EdHone", + "content": { + "number": 233, + "repository": "MetOffice/lfric_core", + "title": "Verniered Calipers performance 25 core", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/233" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkArdU", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "mike-hobson", + "MatthewHambley", + "EdHone", + "mike-hobson", + "EdHone" + ], + "sciTech Review": "mike-hobson", + "status": "Done", + "title": "Verniered Calipers performance 25 core" + }, + { + "assignees": [ + "cjohnson-pi" + ], + "code Review": "mo-marqh", + "content": { + "number": 170, + "repository": "MetOffice/lfric_apps", + "title": "Update linear integration tests", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/170" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkAyUQ", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "tommbendall", + "mo-marqh", + "ss421", + "matthewrmshin" + ], + "sciTech Review": "tommbendall", + "status": "Code Review", + "title": "Update linear integration tests" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "yaswant", + "content": { + "number": 57, + "repository": "MetOffice/growss", + "title": "Ignore unable assign", + "type": "PullRequest", + "url": "https://github.com/MetOffice/growss/pull/57" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkBdlo", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/growss", + "reviewers": [ + "yaswant", + "yaswant" + ], + "status": "Done", + "title": "Ignore unable assign" + }, + { + "assignees": [ + "bblay-mo" + ], + "content": { + "number": 169, + "repository": "MetOffice/lfric_apps", + "title": "S20 Diags: icao heights", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/169" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkBtFs", + "labels": [ + "cla-signed" + ], + "repository": "https://github.com/MetOffice/lfric_apps", + "status": "In Progress", + "title": "S20 Diags: icao heights" + }, + { + "assignees": [ + "mo-jmanners" + ], + "code Review": "t00sa", + "content": { + "number": 14, + "repository": "MetOffice/socrates", + "title": "Update Total Internal Partition Sums for HITRAN2024", + "type": "PullRequest", + "url": "https://github.com/MetOffice/socrates/pull/14" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkBvcI", + "labels": [ + "enhancement", + "KGO" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/socrates", + "reviewers": [ + "Petzi1", + "t00sa" + ], + "status": "Done", + "title": "Update Total Internal Partition Sums for HITRAN2024" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "jennyhickson", + "content": { + "number": 173, + "repository": "MetOffice/lfric_apps", + "title": "update jedi owners", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/173" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkB2Vo", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "jennyhickson", + "jennyhickson" + ], + "status": "Done", + "title": "update jedi owners" + }, + { + "assignees": [ + "tommbendall" + ], + "code Review": "allynt", + "content": { + "number": 237, + "repository": "MetOffice/lfric_core", + "title": "Allow different meshes to have different maximum halo depths", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/237" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkEdBA", + "labels": [ + "enhancement", + "Linked Apps", + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "jameskent-metoffice", + "mike-hobson", + "stevemullerworth", + "andrewcoughtrie", + "mo-rickywong", + "EdHone", + "allynt" + ], + "sciTech Review": "jameskent-metoffice", + "status": "Code Review", + "title": "Allow different meshes to have different maximum halo depths" + }, + { + "assignees": [ + "tommbendall" + ], + "code Review": "allynt", + "content": { + "number": 174, + "repository": "MetOffice/lfric_apps", + "title": "Allow different meshes to have different maximum halo depths", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/174" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkEd7c", + "labels": [ + "enhancement", + "Linked Core", + "KGO", + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "jameskent-metoffice", + "allynt" + ], + "sciTech Review": "jameskent-metoffice", + "status": "Code Review", + "title": "Allow different meshes to have different maximum halo depths" + }, + { + "assignees": [ + "tommbendall" + ], + "content": { + "number": 238, + "repository": "MetOffice/lfric_core", + "title": "New function space options for coordinate fields", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/238" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkFJIA", + "labels": [ + "enhancement", + "Linked Apps", + "macro", + "cla-modified" + ], + "milestone": { + "description": "Code Review deadline is 29th May 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-07-01T00:00:00Z", + "title": "Summer 2026" + }, + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "thomasmelvin" + ], + "sciTech Review": "thomasmelvin", + "status": "Code Review", + "title": "New function space options for coordinate fields" + }, + { + "assignees": [ + "Pierre-siddall" + ], + "content": { + "number": 20, + "repository": "MetOffice/moci", + "title": "Add ruff linting", + "type": "PullRequest", + "url": "https://github.com/MetOffice/moci/pull/20" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkFLcE", + "repository": "https://github.com/MetOffice/moci", + "status": "In Progress", + "title": "Add ruff linting" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "content": { + "number": 58, + "repository": "MetOffice/growss", + "title": "fix project action", + "type": "PullRequest", + "url": "https://github.com/MetOffice/growss/pull/58" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkFS00", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/growss", + "reviewers": [ + "yaswant" + ], + "status": "Done", + "title": "fix project action" + }, + { + "assignees": [ + "mo-marqh" + ], + "code Review": "oakleybrunt", + "content": { + "number": 176, + "repository": "MetOffice/lfric_apps", + "title": "Calipers performance25", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/176" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkFm48", + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "tommbendall", + "oakleybrunt", + "tommbendall", + "ss421", + "matthewrmshin" + ], + "sciTech Review": "tommbendall", + "status": "Done", + "title": "Calipers performance25" + }, + { + "assignees": [ + "thomasmelvin" + ], + "code Review": "mo-rickywong", + "content": { + "number": 177, + "repository": "MetOffice/lfric_apps", + "title": "Solver improvements", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/177" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkFuds", + "labels": [ + "KGO", + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "tommbendall", + "mo-rickywong" + ], + "sciTech Review": "tommbendall", + "status": "Code Review", + "title": "Solver improvements" + }, + { + "assignees": [ + "tommbendall" + ], + "content": { + "number": 179, + "repository": "MetOffice/lfric_apps", + "title": "New function space options for coordinate fields", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/179" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkGOo4", + "labels": [ + "enhancement", + "Linked Core", + "KGO", + "macro", + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 29th May 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-07-01T00:00:00Z", + "title": "Summer 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "status": "In Progress", + "title": "New function space options for coordinate fields" + }, + { + "content": { + "number": 59, + "repository": "MetOffice/growss", + "title": "Add logic to check CR in progress for trivial review", + "type": "PullRequest", + "url": "https://github.com/MetOffice/growss/pull/59" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkIlPE", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/growss", + "reviewers": [ + "james-bruten-mo" + ], + "status": "Done", + "title": "Add logic to check CR in progress for trivial review" + }, + { + "content": { + "number": 18, + "repository": "MetOffice/ukca", + "title": "Further ASAD refactoring", + "type": "PullRequest", + "url": "https://github.com/MetOffice/ukca/pull/18" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkIv0I", + "labels": [ + "cla-signed" + ], + "repository": "https://github.com/MetOffice/ukca", + "status": "In Progress", + "title": "Further ASAD refactoring" + }, + { + "assignees": [ + "tommbendall" + ], + "code Review": "andrewcoughtrie", + "content": { + "number": 244, + "repository": "MetOffice/lfric_core", + "title": "Correction to team in code owner file", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/244" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkJ85k", + "labels": [ + "bug", + "documentation", + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "thomasmelvin", + "andrewcoughtrie" + ], + "sciTech Review": "thomasmelvin", + "status": "Done", + "title": "Correction to team in code owner file" + }, + { + "assignees": [ + "tommbendall" + ], + "content": { + "number": 180, + "repository": "MetOffice/lfric_apps", + "title": "Higher-order Orography", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/180" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkKD0U", + "labels": [ + "enhancement", + "KGO", + "macro", + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 29th May 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-07-01T00:00:00Z", + "title": "Summer 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "atb1995" + ], + "sciTech Review": "atb1995", + "status": "SciTech Review", + "title": "Higher-order Orography" + }, + { + "assignees": [ + "maggiehendry" + ], + "code Review": "james-bruten-mo", + "content": { + "number": 39, + "repository": "MetOffice/jules", + "title": "Migrate metadata jules_model_environment remainder of jules_surface to jules-shared", + "type": "PullRequest", + "url": "https://github.com/MetOffice/jules/pull/39" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkNnj4", + "labels": [ + "Linked UM", + "Linked Apps", + "macro", + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/jules", + "reviewers": [ + "Adrian-Lock", + "james-bruten-mo" + ], + "sciTech Review": "Adrian-Lock", + "status": "Approved", + "title": "Migrate metadata jules_model_environment remainder of jules_surface to jules-shared" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "jennyhickson", + "content": { + "number": 561, + "repository": "MetOffice/simulation-systems", + "title": "fix typo", + "type": "PullRequest", + "url": "https://github.com/MetOffice/simulation-systems/pull/561" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkO-yk", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/simulation-systems", + "reviewers": [ + "jennyhickson" + ], + "status": "Done", + "title": "fix typo" + }, + { + "assignees": [ + "maggiehendry" + ], + "code Review": "james-bruten-mo", + "content": { + "number": 30, + "repository": "MetOffice/um", + "title": "Migrate metadata jules_model_environment remainder of jules_surface to jules-shared", + "type": "PullRequest", + "url": "https://github.com/MetOffice/um/pull/30" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkP6oM", + "repository": "https://github.com/MetOffice/um", + "reviewers": [ + "Adrian-Lock", + "james-bruten-mo" + ], + "sciTech Review": "Adrian-Lock", + "status": "Approved", + "title": "Migrate metadata jules_model_environment remainder of jules_surface to jules-shared" + }, + { + "assignees": [ + "maggiehendry" + ], + "code Review": "james-bruten-mo", + "content": { + "number": 181, + "repository": "MetOffice/lfric_apps", + "title": "Migrate metadata jules_model_environment remainder of jules_surface to jules-shared", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/181" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkQJxI", + "labels": [ + "cla-signed" + ], + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "Adrian-Lock", + "james-bruten-mo" + ], + "sciTech Review": "Adrian-Lock", + "status": "Approved", + "title": "Migrate metadata jules_model_environment remainder of jules_surface to jules-shared" + }, + { + "assignees": [ + "tom-j-h" + ], + "code Review": "mo-marqh", + "content": { + "number": 182, + "repository": "MetOffice/lfric_apps", + "title": "Linear and adjoint boundary layer physics", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/182" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkQUoc", + "labels": [ + "KGO", + "macro", + "cla-modified" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "cjohnson-pi", + "ss421", + "matthewrmshin", + "mo-marqh" + ], + "sciTech Review": "cjohnson-pi", + "status": "Code Review", + "title": "Linear and adjoint boundary layer physics" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "jennyhickson", + "content": { + "number": 60, + "repository": "MetOffice/growss", + "title": "update to use base_ref, not base_sha", + "type": "PullRequest", + "url": "https://github.com/MetOffice/growss/pull/60" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkQfaU", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/growss", + "reviewers": [ + "jennyhickson" + ], + "status": "Done", + "title": "update to use base_ref, not base_sha" + }, + { + "content": { + "number": 61, + "repository": "MetOffice/growss", + "title": "Change diff point", + "type": "PullRequest", + "url": "https://github.com/MetOffice/growss/pull/61" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkQihQ", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/growss", + "reviewers": [ + "jennyhickson" + ], + "status": "Done", + "title": "Change diff point" + }, + { + "assignees": [ + "EdHone" + ], + "code Review": "andrewcoughtrie", + "content": { + "number": 183, + "repository": "MetOffice/lfric_apps", + "title": "Remove use of deprecated XIOS context API", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/183" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkQ3bY", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "andrewcoughtrie" + ], + "status": "Done", + "title": "Remove use of deprecated XIOS context API" + }, + { + "code Review": "t00sa", + "content": { + "number": 246, + "repository": "MetOffice/lfric_core", + "title": "240 add skeleton fab script", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/246" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkTZrw", + "labels": [ + "cla-signed" + ], + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "MatthewHambley", + "stevemullerworth", + "mike-hobson" + ], + "sciTech Review": "MatthewHambley", + "status": "SciTech Review", + "title": "240 add skeleton fab script" + }, + { + "assignees": [ + "t00sa" + ], + "code Review": "r-sharp", + "content": { + "number": 248, + "repository": "MetOffice/lfric_core", + "title": "Add support for the test suite on monsoon 3", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/248" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkVTdU", + "labels": [ + "cla-signed" + ], + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "mo-rickywong", + "james-bruten-mo" + ], + "sciTech Review": "james-bruten-mo", + "status": "Changes Requested", + "title": "Add support for the test suite on monsoon 3" + }, + { + "assignees": [ + "caroduro", + "mo-eddy" + ], + "code Review": "ericaneininger", + "content": { + "number": 40, + "repository": "MetOffice/jules", + "title": "Vn8.0 lsh new zw lsh full hydraulic connect [issue 33]", + "type": "PullRequest", + "url": "https://github.com/MetOffice/jules/pull/40" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkVVbI", + "labels": [ + "cla-signed" + ], + "repository": "https://github.com/MetOffice/jules", + "reviewers": [], + "status": "In Progress", + "title": "Vn8.0 lsh new zw lsh full hydraulic connect [issue 33]" + }, + { + "assignees": [ + "mo-rickywong" + ], + "code Review": "mo-lucy-gordon", + "content": { + "number": 249, + "repository": "MetOffice/lfric_core", + "title": "Remove module scope access of namelist variables by coordinate/native jacobian.", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/249" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkVjKo", + "labels": [ + "cla-signed" + ], + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "mo-lucy-gordon" + ], + "status": "Code Review", + "title": "Remove module scope access of namelist variables by coordinate/native jacobian." + }, + { + "assignees": [ + "mo-rickywong" + ], + "code Review": "mo-lucy-gordon", + "content": { + "number": 184, + "repository": "MetOffice/lfric_apps", + "title": "Modify LFRic Apps files that call native/coordinate Jacobian files", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/184" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkVrEM", + "labels": [ + "cla-signed" + ], + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "mo-lucy-gordon" + ], + "status": "Code Review", + "title": "Modify LFRic Apps files that call native/coordinate Jacobian files" + }, + { + "assignees": [ + "andrewcoughtrie" + ], + "code Review": "EdHone", + "content": { + "number": 251, + "repository": "MetOffice/lfric_core", + "title": "Mpifort makefile", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/251" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkV0Ck", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "MatthewHambley", + "mike-hobson", + "stevemullerworth", + "mike-hobson", + "EdHone", + "EdHone" + ], + "sciTech Review": "mike-hobson", + "status": "Done", + "title": "Mpifort makefile" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "ericaneininger", + "content": { + "number": 169, + "repository": "MetOffice/SimSys_Scripts", + "title": "Suite merge script", + "type": "PullRequest", + "url": "https://github.com/MetOffice/SimSys_Scripts/pull/169" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkWDiA", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/SimSys_Scripts", + "reviewers": [ + "t00sa", + "t00sa", + "cameronbateman-mo", + "ericaneininger", + "ericaneininger" + ], + "sciTech Review": "t00sa", + "status": "Done", + "title": "Suite merge script" + }, + { + "assignees": [ + "yaswant" + ], + "code Review": "jennyhickson", + "content": { + "number": 565, + "repository": "MetOffice/simulation-systems", + "title": "Update README to add SimSys repository list", + "type": "PullRequest", + "url": "https://github.com/MetOffice/simulation-systems/pull/565" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkWsGE", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/simulation-systems", + "reviewers": [ + "jennyhickson" + ], + "status": "Done", + "title": "Update README to add SimSys repository list" + }, + { + "assignees": [ + "tommbendall" + ], + "code Review": "ericaneininger", + "content": { + "number": 186, + "repository": "MetOffice/lfric_apps", + "title": "Log to rank zero only by default", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/186" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkY2Ow", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "ss421", + "matthewrmshin", + "thomasmelvin", + "ericaneininger" + ], + "sciTech Review": "thomasmelvin", + "status": "Done", + "title": "Log to rank zero only by default" + }, + { + "assignees": [ + "tommbendall" + ], + "code Review": "mo-alistairp", + "content": { + "number": 187, + "repository": "MetOffice/lfric_apps", + "title": "Improve negative mass error message", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/187" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkZBZY", + "labels": [ + "cla-modified" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "jameskent-metoffice", + "mo-alistairp" + ], + "sciTech Review": "jameskent-metoffice", + "status": "Done", + "title": "Improve negative mass error message" + }, + { + "assignees": [ + "jennyhickson" + ], + "content": { + "number": 188, + "repository": "MetOffice/lfric_apps", + "title": "Add all codeowners to CODEOWNERS file", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/188" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkZhxs", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "status": "In Progress", + "title": "Add all codeowners to CODEOWNERS file" + }, + { + "assignees": [ + "andrewcoughtrie" + ], + "code Review": "james-bruten-mo", + "content": { + "number": 253, + "repository": "MetOffice/lfric_core", + "title": "Change gitattributes diff to fortran-free-form", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/253" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkaPyE", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "james-bruten-mo" + ], + "status": "Done", + "title": "Change gitattributes diff to fortran-free-form" + }, + { + "assignees": [ + "andrewcoughtrie" + ], + "code Review": "james-bruten-mo", + "content": { + "number": 190, + "repository": "MetOffice/lfric_apps", + "title": "Update gitattributes diff to fortran-free-form", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/190" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkahf8", + "labels": [ + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "james-bruten-mo" + ], + "status": "Done", + "title": "Update gitattributes diff to fortran-free-form" + }, + { + "assignees": [ + "christophermaynard", + "alanjhewitt" + ], + "code Review": "Pierre-siddall", + "content": { + "number": 191, + "repository": "MetOffice/lfric_apps", + "title": "Radaer seg", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/191" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkahss", + "labels": [ + "Linked UKCA" + ], + "repository": "https://github.com/MetOffice/lfric_apps", + "status": "In Progress", + "title": "Radaer seg" + }, + { + "assignees": [ + "christophermaynard", + "alanjhewitt" + ], + "code Review": "Pierre-siddall", + "content": { + "number": 21, + "repository": "MetOffice/ukca", + "title": "Segmetation in calls from lfric_apps to radaer", + "type": "PullRequest", + "url": "https://github.com/MetOffice/ukca/pull/21" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkangk", + "labels": [ + "Linked Apps", + "cla-signed" + ], + "repository": "https://github.com/MetOffice/ukca", + "status": "In Progress", + "title": "Segmetation in calls from lfric_apps to radaer" + }, + { + "assignees": [ + "stevemullerworth" + ], + "code Review": "mo-lottieturner", + "content": { + "number": 193, + "repository": "MetOffice/lfric_apps", + "title": "Replace model rh_crit with fixed value from config in glomap_aerosol", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/193" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkazA0", + "labels": [ + "KGO", + "cla-signed" + ], + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "tommbendall", + "mo-lottieturner" + ], + "sciTech Review": "tommbendall", + "status": "Code Review", + "title": "Replace model rh_crit with fixed value from config in glomap_aerosol" + }, + { + "assignees": [ + "tommbendall" + ], + "content": { + "number": 195, + "repository": "MetOffice/lfric_apps", + "title": "Some kernels that write to W2 fields aren't safe for threading", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/195" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgka9qo", + "labels": [ + "bug", + "KGO", + "cla-signed" + ], + "repository": "https://github.com/MetOffice/lfric_apps", + "status": "In Progress", + "title": "Some kernels that write to W2 fields aren't safe for threading" + }, + { + "assignees": [ + "mike-hobson" + ], + "code Review": "stevemullerworth", + "content": { + "number": 254, + "repository": "MetOffice/lfric_core", + "title": "Improve partitioner unit tests", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/254" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkdKkg", + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "stevemullerworth", + "MatthewHambley", + "james-bruten-mo", + "mo-rickywong" + ], + "status": "Changes Requested", + "title": "Improve partitioner unit tests" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "t00sa", + "content": { + "number": 170, + "repository": "MetOffice/SimSys_Scripts", + "title": "Git ignore", + "type": "PullRequest", + "url": "https://github.com/MetOffice/SimSys_Scripts/pull/170" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkdehc", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/SimSys_Scripts", + "reviewers": [ + "t00sa" + ], + "status": "Done", + "title": "Git ignore" + }, + { + "assignees": [ + "thomasmelvin" + ], + "code Review": "mo-rickywong", + "content": { + "number": 255, + "repository": "MetOffice/lfric_core", + "title": "Mixed multigrid", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/255" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkdgpY", + "labels": [ + "cla-required" + ], + "repository": "https://github.com/MetOffice/lfric_core", + "status": "In Progress", + "title": "Mixed multigrid" + }, + { + "assignees": [ + "thomasmelvin" + ], + "code Review": "mo-rickywong", + "content": { + "number": 197, + "repository": "MetOffice/lfric_apps", + "title": "Mixed multigrid", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/197" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkdhdo", + "labels": [ + "cla-required" + ], + "milestone": { + "description": "Code Review deadline is 25th September 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-11-04T00:00:00Z", + "title": "Autumn 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "status": "In Progress", + "title": "Mixed multigrid" + }, + { + "assignees": [ + "andrewcoughtrie" + ], + "code Review": "yaswant", + "content": { + "number": 256, + "repository": "MetOffice/lfric_core", + "title": "Only build docs when docs files changed", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/256" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkdxEk", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "yaswant", + "yaswant" + ], + "status": "Done", + "title": "Only build docs when docs files changed" + }, + { + "assignees": [ + "andrewcoughtrie" + ], + "code Review": "yaswant", + "content": { + "number": 198, + "repository": "MetOffice/lfric_apps", + "title": "Only build docs when docs files changed", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/198" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkdzlM", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "yaswant" + ], + "status": "Done", + "title": "Only build docs when docs files changed" + }, + { + "assignees": [ + "Pierre-siddall" + ], + "content": { + "number": 200, + "repository": "MetOffice/lfric_apps", + "title": "Add fortitude to CI/CD pipeline", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/200" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkd8pA", + "labels": [ + "enhancement", + "cla-signed" + ], + "repository": "https://github.com/MetOffice/lfric_apps", + "status": "In Progress", + "title": "Add fortitude to CI/CD pipeline" + }, + { + "assignees": [ + "Pierre-siddall" + ], + "content": { + "number": 258, + "repository": "MetOffice/lfric_core", + "title": "Add fortitude to CI/CD pipeline", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/258" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkd97A", + "labels": [ + "cla-signed" + ], + "repository": "https://github.com/MetOffice/lfric_core", + "status": "In Progress", + "title": "Add fortitude to CI/CD pipeline" + }, + { + "assignees": [ + "jennyhickson" + ], + "code Review": "james-bruten-mo", + "content": { + "number": 171, + "repository": "MetOffice/SimSys_Scripts", + "title": "Refactor workload.py", + "type": "PullRequest", + "url": "https://github.com/MetOffice/SimSys_Scripts/pull/171" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkeNkQ", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/SimSys_Scripts", + "reviewers": [ + "james-bruten-mo", + "james-bruten-mo" + ], + "status": "Approved", + "title": "Refactor workload.py" + }, + { + "assignees": [ + "maggiehendry" + ], + "content": { + "number": 42, + "repository": "MetOffice/jules", + "title": "Migrate jules_pftparm metadata to jules-shared", + "type": "PullRequest", + "url": "https://github.com/MetOffice/jules/pull/42" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkeuwo", + "labels": [ + "cla-signed" + ], + "repository": "https://github.com/MetOffice/jules", + "status": "In Progress", + "title": "Migrate jules_pftparm metadata to jules-shared" + }, + { + "assignees": [ + "ukmo-juan-castillo" + ], + "code Review": "TeranIvy", + "content": { + "number": 201, + "repository": "MetOffice/lfric_apps", + "title": "Lfric2lfric multi cpu", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/201" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkfp_8", + "labels": [ + "cla-signed" + ], + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "mo-rickywong", + "mo-rickywong" + ], + "sciTech Review": "mo-rickywong", + "status": "SciTech Review", + "title": "Lfric2lfric multi cpu" + }, + { + "assignees": [ + "MetBenjaminWent" + ], + "code Review": "andrewcoughtrie", + "content": { + "number": 261, + "repository": "MetOffice/lfric_core", + "title": "Add tag to avoid vernier CCE MPI bug", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_core/pull/261" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkiUrQ", + "labels": [ + "cla-signed" + ], + "repository": "https://github.com/MetOffice/lfric_core", + "reviewers": [ + "andrewcoughtrie", + "MatthewHambley", + "mike-hobson", + "EdHone", + "EdHone" + ], + "sciTech Review": "EdHone", + "status": "Approved", + "title": "Add tag to avoid vernier CCE MPI bug" + }, + { + "assignees": [ + "r-sharp" + ], + "code Review": "ericaneininger", + "content": { + "number": 173, + "repository": "MetOffice/SimSys_Scripts", + "title": "Tweaks to get VSCode's internal linters to quit whinging and make the\u2026", + "type": "PullRequest", + "url": "https://github.com/MetOffice/SimSys_Scripts/pull/173" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkidQk", + "repository": "https://github.com/MetOffice/SimSys_Scripts", + "reviewers": [ + "Pierre-siddall" + ], + "sciTech Review": "Pierre-siddall", + "status": "Changes Requested", + "title": "Tweaks to get VSCode's internal linters to quit whinging and make the\u2026" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "t00sa", + "content": { + "number": 174, + "repository": "MetOffice/SimSys_Scripts", + "title": "handle undefined ref", + "type": "PullRequest", + "url": "https://github.com/MetOffice/SimSys_Scripts/pull/174" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkids0", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/SimSys_Scripts", + "reviewers": [ + "t00sa" + ], + "status": "Done", + "title": "handle undefined ref" + }, + { + "assignees": [ + "stevemullerworth" + ], + "code Review": "harry-shepherd", + "content": { + "number": 202, + "repository": "MetOffice/lfric_apps", + "title": "Extra fields need to be written to checkpoint dump for lfric_atm glomap_mode dust_and_clim", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/202" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgki7ns", + "labels": [ + "KGO", + "cla-required" + ], + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "harry-shepherd", + "alanjhewitt" + ], + "sciTech Review": "alanjhewitt", + "status": "Code Review", + "title": "Extra fields need to be written to checkpoint dump for lfric_atm glomap_mode dust_and_clim" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "jennyhickson", + "content": { + "number": 33, + "repository": "MetOffice/um", + "title": "update readme with standard suites", + "type": "PullRequest", + "url": "https://github.com/MetOffice/um/pull/33" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkjAWQ", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/um", + "reviewers": [ + "jennyhickson" + ], + "status": "Done", + "title": "update readme with standard suites" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "jennyhickson", + "content": { + "number": 203, + "repository": "MetOffice/lfric_apps", + "title": "Add standard suites", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/203" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkjAx0", + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "jennyhickson" + ], + "status": "Approved", + "title": "Add standard suites" + }, + { + "assignees": [ + "andrewcoughtrie" + ], + "code Review": "yaswant", + "content": { + "number": 204, + "repository": "MetOffice/lfric_apps", + "title": "Add science guide section to documentation.", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/204" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkjY4g", + "repository": "https://github.com/MetOffice/lfric_apps", + "reviewers": [ + "yaswant", + "yaswant" + ], + "status": "Done", + "title": "Add science guide section to documentation." + }, + { + "assignees": [ + "mo-jmanners" + ], + "code Review": "r-sharp", + "content": { + "number": 16, + "repository": "MetOffice/socrates", + "title": "Script to generate CMIP7 future scenario solar forcing for GA9 spectral files", + "type": "PullRequest", + "url": "https://github.com/MetOffice/socrates/pull/16" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkjjtg", + "labels": [ + "bug", + "enhancement", + "Linked Spectral" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/socrates", + "status": "In Progress", + "title": "Script to generate CMIP7 future scenario solar forcing for GA9 spectral files" + }, + { + "assignees": [ + "mo-jmanners" + ], + "code Review": "r-sharp", + "content": { + "number": 6, + "repository": "MetOffice/socrates-spectral", + "title": "Add CMIP7 future scenario solar variability files", + "type": "PullRequest", + "url": "https://github.com/MetOffice/socrates-spectral/pull/6" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkjmRc", + "labels": [ + "enhancement", + "Linked Socrates", + "cla-signed" + ], + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/socrates-spectral", + "status": "In Progress", + "title": "Add CMIP7 future scenario solar variability files" + }, + { + "assignees": [ + "maggiehendry" + ], + "content": { + "number": 205, + "repository": "MetOffice/lfric_apps", + "title": "Migrate jules pftparm metadata to jules shared", + "type": "PullRequest", + "url": "https://github.com/MetOffice/lfric_apps/pull/205" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkn_3o", + "labels": [ + "cla-signed" + ], + "repository": "https://github.com/MetOffice/lfric_apps", + "status": "In Progress", + "title": "Migrate jules pftparm metadata to jules shared" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "jennyhickson", + "content": { + "number": 175, + "repository": "MetOffice/SimSys_Scripts", + "title": "fix for mirror extract", + "type": "PullRequest", + "url": "https://github.com/MetOffice/SimSys_Scripts/pull/175" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkpoxM", + "milestone": { + "description": "Code Review deadline is 30th January 2026 (SciTech review to be completed by this date)", + "dueOn": "2026-03-04T00:00:00Z", + "title": "Spring 2026" + }, + "repository": "https://github.com/MetOffice/SimSys_Scripts", + "reviewers": [ + "jennyhickson" + ], + "status": "Approved", + "title": "fix for mirror extract" + }, + { + "assignees": [ + "james-bruten-mo" + ], + "code Review": "t00sa", + "content": { + "number": 176, + "repository": "MetOffice/SimSys_Scripts", + "title": "fixes for https", + "type": "PullRequest", + "url": "https://github.com/MetOffice/SimSys_Scripts/pull/176" + }, + "id": "PVTI_lADOAGrG5M4A_OAXzgkrHtk", + "repository": "https://github.com/MetOffice/SimSys_Scripts", + "reviewers": [ + "t00sa", + "t00sa" + ], + "status": "Done", + "title": "fixes for https" + } + ], + "totalCount": 227 +} \ No newline at end of file From f57c61837a91786f5c3572514f15b11d7f40a1ab Mon Sep 17 00:00:00 2001 From: jennyhickson <61183013+jennyhickson@users.noreply.github.com> Date: Tue, 3 Feb 2026 10:52:00 +0000 Subject: [PATCH 16/18] add total --- gh_review_project/finish_milestone.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/gh_review_project/finish_milestone.py b/gh_review_project/finish_milestone.py index b8342ca7..7ad44536 100644 --- a/gh_review_project/finish_milestone.py +++ b/gh_review_project/finish_milestone.py @@ -113,8 +113,14 @@ def report(closed: dict, milestone: str) -> None: print_banner(f"Pull requests completed for {milestone}") + total = 0 for repo in closed: - print(f"{repo: <20} {len(closed[repo]): >3} pull requests") + count = len(closed[repo]) + total += count + print(f"{repo: <20} {count: >3} pull requests") + + print(f"{total} pull requests completed in {milestone}") + def parse_args(): From 85a0fe400a15c34c03ba14fb9f94a72c873a982e Mon Sep 17 00:00:00 2001 From: jennyhickson <61183013+jennyhickson@users.noreply.github.com> Date: Tue, 3 Feb 2026 13:44:36 +0000 Subject: [PATCH 17/18] get milestones and repos --- gh_review_project/review_project.py | 52 +++++++++++++++++------------ 1 file changed, 30 insertions(+), 22 deletions(-) diff --git a/gh_review_project/review_project.py b/gh_review_project/review_project.py index af0da00e..62833c20 100644 --- a/gh_review_project/review_project.py +++ b/gh_review_project/review_project.py @@ -50,14 +50,14 @@ class ProjectData: def __init__( self, data: list, - test: bool = False, - milestones: list = None, - repos: list = None, + test: bool = False ): self.data = data self.test = test - self.milestones = milestones - self.repos = repos + + # Extract these once as useful lists + self.milestones = self._extract_milestones() + self.repos = self._extract_repositories() @classmethod def from_github(cls, capture: bool = False, file: Path = None) -> ProjectData: @@ -81,8 +81,8 @@ def from_github(cls, capture: bool = False, file: Path = None) -> ProjectData: else: print("Unable to capture data as filename not specified.") - data, milestones, repositories = cls._extract_data(raw_data) - return cls(data=data, test=False, milestones=milestones, repos=repositories) + data = cls._extract_data(raw_data) + return cls(data=data, test=False) @classmethod def from_file(cls, file: Path) -> ProjectData: @@ -92,8 +92,8 @@ def from_file(cls, file: Path) -> ProjectData: with open(file) as f: raw_data = json.loads(f.read()) - data, milestones, repositories = cls._extract_data(raw_data) - return cls(data=data, test=True, milestones=milestones, repos=repositories) + data = cls._extract_data(raw_data) + return cls(data=data, test=True) @classmethod def _extract_data(cls, raw_data: dict) -> (dict, list): @@ -104,9 +104,6 @@ def _extract_data(cls, raw_data: dict) -> (dict, list): """ data = [] - milestones = set() - milestones.add("None") - repositories = set() for pr in raw_data["items"]: pull_request = PullRequest( @@ -116,14 +113,11 @@ def _extract_data(cls, raw_data: dict) -> (dict, list): repo=pr["content"]["repository"].replace("MetOffice/", ""), ) - repositories.add(pull_request.repo) - if "status" in pr: pull_request.status = pr["status"] if "milestone" in pr: pull_request.milestone = pr["milestone"]["title"] - milestones.add(pull_request.milestone) if "assignee" in pr: pull_request.assignee = pr["assignees"] @@ -136,7 +130,21 @@ def _extract_data(cls, raw_data: dict) -> (dict, list): data.append(pull_request) - return data, milestones, repositories + return data + + def _extract_milestones(self) -> set: + milestones = set() + for pr in self.data: + milestones.add(pr.milestone) + + return milestones + + def _extract_repositories(self) -> set: + repositories = set() + for pr in self.data: + repositories.add(pr.repo) + + return repositories def get_reviewers_for_repo(self, repo: str) -> list: """ @@ -160,12 +168,12 @@ def get_reviewers_for_repo(self, repo: str) -> list: if cr: reviewers.append(cr) - if self.test and (cr or sr): - # Handle case where these are None - if not sr: - sr = "" - if not cr: - cr = "" + if self.test and (cr or sr): + # Handle case where these are None + if not sr: + sr = "" + if not cr: + cr = "" print( "SciTech:", From 67d21d298ef56df464b277f7889fea69c5eea1f0 Mon Sep 17 00:00:00 2001 From: jennyhickson <61183013+jennyhickson@users.noreply.github.com> Date: Tue, 3 Feb 2026 14:06:22 +0000 Subject: [PATCH 18/18] tidy type hinting --- gh_review_project/review_project.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gh_review_project/review_project.py b/gh_review_project/review_project.py index 62833c20..1a5df9b4 100644 --- a/gh_review_project/review_project.py +++ b/gh_review_project/review_project.py @@ -82,7 +82,7 @@ def from_github(cls, capture: bool = False, file: Path = None) -> ProjectData: print("Unable to capture data as filename not specified.") data = cls._extract_data(raw_data) - return cls(data=data, test=False) + return cls(data, test=False) @classmethod def from_file(cls, file: Path) -> ProjectData: @@ -93,10 +93,10 @@ def from_file(cls, file: Path) -> ProjectData: raw_data = json.loads(f.read()) data = cls._extract_data(raw_data) - return cls(data=data, test=True) + return cls(data, test=True) @classmethod - def _extract_data(cls, raw_data: dict) -> (dict, list): + def _extract_data(cls, raw_data: dict) -> list: """ Extract useful information from the raw data and store it in a list of PullRequest objects. Also extract a list of