Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
Use correct stash name when running nightly tests (#14809)
Browse files Browse the repository at this point in the history
The PR #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 marcoabreu committed Apr 26, 2019
1 parent 6aeb97e commit 680bade
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 680bade

Please sign in to comment.