-
Notifications
You must be signed in to change notification settings - Fork 902
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[REVIEW] FIX Remove random build directory generation for ccache #7508
[REVIEW] FIX Remove random build directory generation for ccache #7508
Conversation
Failure is related to Project Flash, need to work with Ray to resolve this. I'll test ccache functionality via the PR. |
rerun tests |
rerun tests |
Codecov Report
@@ Coverage Diff @@
## branch-0.19 #7508 +/- ##
===============================================
+ Coverage 81.80% 82.29% +0.48%
===============================================
Files 101 101
Lines 16695 17264 +569
===============================================
+ Hits 13658 14208 +550
- Misses 3037 3056 +19
Continue to review full report at Codecov.
|
This changes the root directory of the build folder for conda. Instead of generating a random build folder name, it will create a consistent build folder name at the `croot` location. This folder name is unique in CI, as every build has a unique `${WORKSPACE}` that is used. Lots of workarounds added to properly work with Project Flash. Several `mv` commands are added to put build artifacts in a folder Project Flash expects them to be in. Authors: - Dillon Cullinan (@dillon-cullinan) Approvers: - AJ Schmidt (@ajschmidt8) URL: rapidsai#7508
This changes the root directory of the build folder for conda. Instead of generating a random build folder name, it will create a consistent build folder name at the
croot
location. This folder name is unique in CI, as every build has a unique${WORKSPACE}
that is used.Lots of workarounds added to properly work with Project Flash. Several
mv
commands are added to put build artifacts in a folder Project Flash expects them to be in.