Skip to content
Failed

Console Output

Started by an SCM change
Obtained jenkins_tests/clubb_release_diff_test/Jenkinsfile from git https://github.com/larson-group/clubb.git
[Pipeline] Start of Pipeline
[Pipeline] node
Running on nelson in /home/jenkins/workspace/clubb_release_diff_test
[Pipeline] {
[Pipeline] stage
[Pipeline] { (Declarative: Checkout SCM)
[Pipeline] checkout
The recommended git tool is: git
Cloning the remote Git repository
Cloning repository https://github.com/larson-group/clubb.git
 > git init /home/jenkins/workspace/clubb_release_diff_test # timeout=10
Fetching upstream changes from https://github.com/larson-group/clubb.git
 > git --version # timeout=10
 > git --version # 'git version 2.34.1'
using GIT_ASKPASS to set credentials A token based key used by Jenkins to preform Github actions, created 6/21/2021
 > git fetch --tags --force --progress -- https://github.com/larson-group/clubb.git +refs/heads/*:refs/remotes/origin/* # timeout=10
Avoid second fetch
Checking out Revision 7dab4b45efa0845b25a3ab7e6f68148f5dd139f3 (refs/remotes/origin/master)
Commit message: "I am updating the SILHS code that calculates k_lh_start to work consistently with ghostless CLUBB. This commit is BIT_CHANGING."
 > git config remote.origin.url https://github.com/larson-group/clubb.git # timeout=10
 > git config --add remote.origin.fetch +refs/heads/*:refs/remotes/origin/* # timeout=10
 > git rev-parse refs/remotes/origin/master^{commit} # timeout=10
 > git config core.sparsecheckout # timeout=10
 > git checkout -f 7dab4b45efa0845b25a3ab7e6f68148f5dd139f3 # timeout=10
 > git rev-list --no-walk 524390e3bf242e70f087ddb511273cb16f62760a # timeout=10
[Pipeline] }
[Pipeline] // stage
[Pipeline] withEnv
[Pipeline] {
[Pipeline] stage
[Pipeline] { (Checkout Clubb and Clubb_Release)
[Pipeline] sh
+ git clone https://github.com/larson-group/clubb.git
Cloning into 'clubb'...
+ git clone https://github.com/larson-group/clubb_release.git
Cloning into 'clubb_release'...
[Pipeline] }
[Pipeline] // stage
[Pipeline] stage
[Pipeline] { (Diff)
[Pipeline] sh
+ diff --exclude=.git --exclude=version_clubb_core.txt --exclude=version_silhs.txt -r clubb clubb_release
diff '--exclude=.git' '--exclude=version_clubb_core.txt' '--exclude=version_silhs.txt' -r clubb/src/SILHS/latin_hypercube_driver_module.F90 clubb_release/src/SILHS/latin_hypercube_driver_module.F90
561c561
<     r_status = curandGenerate(cu_gen, rand_pool(:,:,2:nz,:), ngrdcol*num_samples*(nz-1)*(pdf_dim+d_uniform_extra))
---
>     r_status = curandGenerate(cu_gen, rand_pool, ngrdcol*num_samples*nz*(pdf_dim+d_uniform_extra))
576c576
<       do k = 2, nz
---
>       do k = 1, nz
591d590
<   rand_pool(:,:,1,:) = 0.5_core_rknd ! ghost level value (not used)
919,920c918
<       cloud_frac_min, & ! Constants
<       zero
---
>       cloud_frac_min ! Constant
970,976c968
<         if ( any( rcm_pdf(i,:) > zero ) ) then
<            k_lh_start_rcm_in_cloud = maxloc( rcm_pdf(i,:) / max( cloud_frac_pdf, cloud_frac_min ), 1 )
<         else
<            ! When clouds aren't found at any level, set k_lh_start_rcm_in_cloud
<            ! to the middle of the vertical domain.
<            k_lh_start_rcm_in_cloud = ( nz - 1 ) / 2 + 1
<         endif
---
>         k_lh_start_rcm_in_cloud = maxloc( rcm_pdf(i,:) / max( cloud_frac_pdf, cloud_frac_min ), 1 )
980,986c972
<         if ( any( rcm_pdf(i,:) > zero ) ) then
<            k_lh_start_rcm = maxloc( rcm_pdf(i,:), 1 )
<         else
<            ! When clouds aren't found at any level, set k_lh_start_rcm to the
<            ! middle of the vertical domain.
<            k_lh_start_rcm = ( nz - 1 ) / 2 + 1
<         endif
---
>         k_lh_start_rcm    = maxloc( rcm_pdf(i,:), 1 )
1006a993,999
>       ! If there's no cloud k_lh_start appears to end up being 1. Check if
>       ! k_lh_start is 1 or nz and set it to the middle of the domain in that
>       ! case.
>       if ( k_lh_start(i) == nz .or. k_lh_start(i) == 1 ) then
>         k_lh_start(i) = nz / 2
>       end if
>       
[Pipeline] }
[Pipeline] // stage
[Pipeline] stage
[Pipeline] { (Declarative: Post Actions)
[Pipeline] script
[Pipeline] {
[Pipeline] cleanWs
[WS-CLEANUP] Deleting project workspace...
[WS-CLEANUP] Deferred wipeout is used...
[WS-CLEANUP] done
[Pipeline] }
[Pipeline] // script
[Pipeline] script
[Pipeline] {
[Pipeline] emailext
Sending email to: messnermet@uwm.edu
[Pipeline] }
[Pipeline] // script
[Pipeline] }
[Pipeline] // stage
[Pipeline] }
[Pipeline] // withEnv
[Pipeline] }
[Pipeline] // node
[Pipeline] End of Pipeline
ERROR: script returned exit code 1
Finished: FAILURE