-
Notifications
You must be signed in to change notification settings - Fork 183
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
just a couple of changes needed for Orion
- Loading branch information
Terry McGuinness
committed
Mar 7, 2025
1 parent
a4c413c
commit 5f7481f
Showing
2 changed files
with
16 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,25 @@ | ||
#!/usr/bin/bash | ||
|
||
export GFS_CI_ROOT=/work2/noaa/stmp/GFS_CI_ROOT/ORION | ||
# Main CI root directory | ||
export GFS_CI_ROOT=/work2/noaa/global/${USER}/GFS_CI_CD/ORION | ||
# ICSDIR root directory used on the create_experment.py command line | ||
export ICSDIR_ROOT=/work/noaa/global/glopara/data/ICSDIR | ||
|
||
# Jenkins directories | ||
export JENKINS_AGENT_LAUNCH_DIR=/home/role-nems/GFS_CI_ROOT_JENKINS/AGENT_mterry | ||
export JENKINS_WORK_DIR=/home/role-nems/GFS_CI_ROOT_JENKINS | ||
# JENKINS launch directory for agent | ||
export JENKINS_AGENT_LAUNCH_DIR=${GFS_CI_ROOT}/Jenkins/agent | ||
# JENKINS internal working directories for CI jobs (not for users use) | ||
export JENKINS_WORK_DIR=${GFS_CI_ROOT}/Jenkins/workspace | ||
# NOTE: JENKINS custom_workspace directory where CI jobs are run | ||
# /work2/noaa/global/role-global/GFS_CI_CD/ORION/CI | ||
# is defined in the Jenkinsfile | ||
|
||
# CTest functional test directories for pre stagged input data | ||
export STAGED_TESTS_DIR=${GFS_CI_ROOT}/STAGED_TESTS_DIR | ||
|
||
# CI BASH test directories | ||
export GFS_BASH_CI_ROOT=${GFS_CI_ROOT}/GFS_BASH_CI | ||
|
||
# CTest functional test directories for pre stagged input data | ||
export STAGED_TESTS_DIR=/work/noaa/stmp/GFS_CI_ROOT/ORION/STAGED_TESTS_DIR | ||
|
||
export HPC_ACCOUNT=nems | ||
# HPC account which overides the default account | ||
export HPC_ACCOUNT=fv3-cpu | ||
export max_concurrent_cases=5 | ||
export max_concurrent_pr=4 |