Skip to content

Commit

Permalink
[develop] Update Jenkins scripts to treat jet-epic as jet
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelLueken committed Aug 11, 2023
1 parent 281511a commit a62933e
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .cicd/scripts/srw_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ else
platform="${SRW_PLATFORM}"
fi

if [[ "${SRW_PLATFORM}" = jet-epic ]]; then
platform='jet'
fi

# Build and install
cd ${workspace}/tests
set +e
Expand Down
4 changes: 4 additions & 0 deletions .cicd/scripts/srw_ftest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ else
platform="${SRW_PLATFORM}"
fi

if [[ "${SRW_PLATFORM}" = jet-epic ]]; then
platform='jet'
fi

# Test directories
we2e_experiment_base_dir="${workspace}/expt_dirs"
we2e_test_dir="${workspace}/tests/WE2E"
Expand Down
4 changes: 4 additions & 0 deletions .cicd/scripts/srw_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ else
platform="${SRW_PLATFORM}"
fi

if [[ "${SRW_PLATFORM}" = jet-epic ]]; then
platform='jet'
fi

# Test directories
we2e_experiment_base_dir="${workspace}/expt_dirs"
we2e_test_dir="${workspace}/tests/WE2E"
Expand Down
2 changes: 1 addition & 1 deletion .cicd/scripts/srw_unittest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ fi

cd $workspace
# Only run this on machines with hpss access
hpss_machines=( jet hera )
hpss_machines=( jet jet-epic hera )
if [[ ${hpss_machines[@]} =~ ${SRW_PLATFORM} ]] ; then

source ${workspace}/ush/load_modules_wflow.sh ${SRW_PLATFORM}
Expand Down

0 comments on commit a62933e

Please sign in to comment.