-
Notifications
You must be signed in to change notification settings - Fork 156
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New build process script changes & gpuCI enhancements(#338)
This PR includes and supersedes #314 ### New build process script changes This PR outlines the changes necessary for the new build process (aka Project Flash) to work with `cuspatial`. This PR is necessary to begin shadow testing of the new build process. The goal is to simultaneously support both the old and new build processes. CI is configured to activate the new process by setting `PROJECT_FLASH=1`. Additionally `BUILD_LIBCUSPATIAL` and `BUILD_CUSPATIAL` will be set to 1 as needed by CI in the new process. CI will stage build artifacts for python and GPU builds in `ci/artifacts/cuspatial/cpu/` which the build scripts will then consume. The Project Flash script branch has been manually tested. This PR will test the non-Project Flash branch. ### gpuCI enhancements - Consolidates some of the CPU gpuCI scripts, reducing number of scripts to maintain - Standardizes naming of the upload script to upload.sh - Changes logging to use gpuci_logger where practical - Updates comments and documentation where necessary - Enables gpuCI to override environment variables based on node types Authors: - dillon-cullinan <dcullinan92@gmail.com> - Raymond Douglass <ray@raydouglass.com> Approvers: - Dillon Cullinan (@dillon-cullinan) - AJ Schmidt (@ajschmidt8) URL: #338
- Loading branch information
1 parent
a1f7120
commit e2b97fa
Showing
8 changed files
with
116 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
# Copyright (c) 2018-2019, NVIDIA CORPORATION. | ||
|
||
# This assumes the script is executed from the root of the repo directory | ||
# show environment | ||
printenv | ||
# build cuspatial with verbose output | ||
cd $WORKSPACE | ||
./build.sh -v libcuspatial | ||
if [[ -z "$PROJECT_FLASH" || "$PROJECT_FLASH" == "0" ]]; then | ||
./build.sh -v libcuspatial | ||
else | ||
./build.sh -v libcuspatial tests | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters