Skip to content

Commit

Permalink
Use correct stash name when running nightly tests (apache#14809)
Browse files Browse the repository at this point in the history
The PR apache#14570 has
introduced a bug where the "stash name" is not matching:

- It is **packed** as `ubuntu_cpu_int64`
- It is **unpacked** as `cpu_int64`
  • Loading branch information
edisongustavo authored and Rohit Kumar Srivastava committed May 14, 2019
1 parent ce37c4e commit 9d08cde
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/nightly/JenkinsfileForBinaries
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ core_logic: {
ws('workspace/build-cpu-int64') {
utils.init_git()
utils.docker_run('ubuntu_nightly_cpu', 'build_ubuntu_cpu_large_tensor', false)
utils.pack_lib('ubuntu_cpu_int64', mx_cmake_lib, true)
utils.pack_lib('cpu_int64', mx_cmake_lib, true)
}
}
},
Expand All @@ -55,7 +55,7 @@ core_logic: {
ws('workspace/build-gpu-int64') {
utils.init_git()
utils.docker_run('ubuntu_nightly_gpu', 'build_ubuntu_gpu_large_tensor', true)
utils.pack_lib('ubuntu_gpu_int64', mx_cmake_lib, true)
utils.pack_lib('gpu_int64', mx_cmake_lib, true)
}
}
}
Expand Down

0 comments on commit 9d08cde

Please sign in to comment.