-
Notifications
You must be signed in to change notification settings - Fork 161
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add DEVCONTAINER_NAME env variable to devcontainers. * Remove enabling install rules. These were needed for the cmake install testing which is disabled. We will add a separate job for testing the install. * Factor out common build/configure logic. * Add compile commands to common cmake options. * Update sccache_stats to selectively add "notfice" prefix when running on action runner. * Remove manual sccache stats calculation from workflow. This is no longer needed because the build scripts do it automatically. * Remove devcontainer name env variable. * Revert "Remove devcontainer name env variable." This reverts commit 2cbc501. * Use devcontainer specific build directory. * Get rid of stale Windows runs-on handling. * Make test job conditional on new input. * Add simple matrix for test. * Enable Thrust test script. * Update thrust test script to use build_common. * Remove redundant build job. * Run nvidia-smi step in test job. * Update CUB test script. * Update libcu++ test script. * Enable CUB and libcu++ test jobs. * Hack to disable verbose CUB test output. * Exclude device_radix_sort CUB tests for now. * Update matrix to full matrix with tests on latest host compiler. * Run tests for all C++ dialects on latest host compiler. * Limit libcu++ tests parallel execution. * Add back set +x to build_common * Disable Thrust and CUB jobs for now. * Hardcode 8 workers for libcu++ tests. * Re-enable Thrust/CUB builds and tests. * Add build/latest. Make it so builds outside of devcontainer build to build/local. Also, always make it so the most recent build is symlinked to build/latest.
- Loading branch information
Showing
8 changed files
with
42 additions
and
45 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,9 @@ | ||
#!/bin/bash | ||
|
||
set -xeuo pipefail | ||
|
||
# Ensure the script is being executed in its containing directory | ||
cd "$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"; | ||
source "$(dirname "$0")/build_common.sh" | ||
|
||
./build_cub.sh "$@" | ||
|
||
ctest --test-dir ../build --output-on-failure --timeout 15 | ||
ctest --test-dir ${BUILD_DIR} --output-on-failure -E device_radix_sort | ||
|
||
echo "CUB test complete" |
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,13 +1,10 @@ | ||
#!/bin/bash | ||
|
||
set -xeuo pipefail | ||
|
||
# Ensure the script is being executed in its containing directory | ||
cd "$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"; | ||
source "$(dirname "$0")/build_common.sh" | ||
|
||
./build_thrust.sh "$@" | ||
|
||
ctest --test-dir ../build --output-on-failure --timeout 15 | ||
ctest --test-dir ${BUILD_DIR} --output-on-failure | ||
|
||
echo "Thrust test complete" | ||
|
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