mirror of
https://github.com/NVIDIA/nvbench.git
synced 2026-03-14 20:27:24 +00:00
commitc5b2fc0a8bAuthor: Allison Piper <alliepiper16@gmail.com> Date: Sat Apr 6 21:48:20 2024 +0000 Add supported compilers and tools in README.md. commit92fe366da5Author: Allison Piper <alliepiper16@gmail.com> Date: Sat Apr 6 20:45:30 2024 +0000 Fix issues discovered by header tests. commitf7f6c92143Author: Allison Piper <alliepiper16@gmail.com> Date: Sat Apr 6 20:45:06 2024 +0000 Setup header tests, add C++20 header tests + examples. The core library will always be built with C++17, but we test our headers / examples under 17 and 20. commit4b24f26b66Author: Allison Piper <alliepiper16@gmail.com> Date: Sat Apr 6 16:21:42 2024 +0000 Pass CUDA FLAGS to install tests. commit4fb672ae91Author: Allison Piper <alliepiper16@gmail.com> Date: Sat Apr 6 15:43:41 2024 +0000 Add newer GCC (13) and Clang (17, 18).
32 lines
686 B
PowerShell
32 lines
686 B
PowerShell
|
|
Param(
|
|
[Parameter(Mandatory = $false)]
|
|
[Alias("cmake-options")]
|
|
[ValidateNotNullOrEmpty()]
|
|
[string]$ARG_CMAKE_OPTIONS = ""
|
|
)
|
|
|
|
$CURRENT_PATH = Split-Path $pwd -leaf
|
|
If($CURRENT_PATH -ne "ci") {
|
|
Write-Host "Moving to ci folder"
|
|
pushd "$PSScriptRoot/.."
|
|
}
|
|
|
|
Remove-Module -Name build_common
|
|
Import-Module $PSScriptRoot/build_common.psm1 -ArgumentList 17
|
|
|
|
$PRESET = "nvbench-ci"
|
|
$CMAKE_OPTIONS = ""
|
|
|
|
# Append any arguments pass in on the command line
|
|
If($ARG_CMAKE_OPTIONS -ne "") {
|
|
$CMAKE_OPTIONS += "$ARG_CMAKE_OPTIONS"
|
|
}
|
|
|
|
configure_and_build_preset "NVBench" "$PRESET" "$CMAKE_OPTIONS"
|
|
test_preset "NVBench" "$PRESET"
|
|
|
|
If($CURRENT_PATH -ne "ci") {
|
|
popd
|
|
}
|