Skip to content

Commit

Permalink
Switch Arkouda graphs to display nightly by default (#22594)
Browse files Browse the repository at this point in the history
[ reviewed by @ronawho ]

Today, Arkouda graphs show the release version by default, which means
that changes to Chapel will be missed. Switching this to default to
nightly will make it more obvious of Chapel-side changes that impact
Arkouda.
  • Loading branch information
bmcdonald3 authored Jul 31, 2023
2 parents e3623a7 + b6a21a0 commit b78a3ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions util/cron/common-arkouda.bash
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export CHPL_WHICH_RELEASE_FOR_ARKOUDA="1.31.0"
# test against Chapel release (checking out current test/cron directories)
function test_release() {
export CHPL_TEST_PERF_DESCRIPTION=release
export CHPL_TEST_PERF_CONFIGS="release:v,nightly"
export CHPL_TEST_PERF_CONFIGS="release:v,nightly:v"
currentSha=`git rev-parse HEAD`
git checkout $CHPL_WHICH_RELEASE_FOR_ARKOUDA
git checkout $currentSha -- $CHPL_HOME/test/
Expand All @@ -62,7 +62,7 @@ function test_release() {
# test against Chapel nightly
function test_nightly() {
export CHPL_TEST_PERF_DESCRIPTION=nightly
export CHPL_TEST_PERF_CONFIGS="release:v,nightly"
export CHPL_TEST_PERF_CONFIGS="release:v,nightly:v"
$CWD/nightly -cron ${nightly_args}
}

Expand Down

0 comments on commit b78a3ef

Please sign in to comment.