-
Notifications
You must be signed in to change notification settings - Fork 310
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Skip the benchmark ctests within CI (#4522)
We have been hitting OOM failures in CI due to some tests using larger amounts of memory. Our C++ testing includes benchmark tests that allow us to test on larger data sets. This PR will suppress execution of the benchmark tests within CI. Disabling these tests shouldn't reduce code coverage in testing. They are mainly used for developers to test larger scale graphs and see the impact on performance of different updates we make. We plan on adding these to our nightly tests where we will probably only run the benchmark results, perhaps with larger data sets since we'll run serially on larger GPUs. Also updated dependencies to skip cmake version 3.30.0 Authors: - Chuck Hastings (https://github.com/ChuckHastings) Approvers: - James Lamb (https://github.com/jameslamb) - Naim (https://github.com/naimnv) URL: #4522
- Loading branch information
1 parent
b9001f9
commit 42c7ad7
Showing
10 changed files
with
12 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ cuda_compiler: | |
- nvcc | ||
|
||
cmake_version: | ||
- ">=3.26.4" | ||
- ">=3.26.4,!=3.30.0" | ||
|
||
c_stdlib: | ||
- sysroot | ||
|
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 |
---|---|---|
|
@@ -11,7 +11,7 @@ cuda11_compiler: | |
- nvcc | ||
|
||
cmake_version: | ||
- ">=3.26.4" | ||
- ">=3.26.4,!=3.30.0" | ||
|
||
c_stdlib: | ||
- sysroot | ||
|
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 |
---|---|---|
|
@@ -11,7 +11,7 @@ cuda11_compiler: | |
- nvcc | ||
|
||
cmake_version: | ||
- ">=3.26.4" | ||
- ">=3.26.4,!=3.30.0" | ||
|
||
c_stdlib: | ||
- sysroot | ||
|
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