Skip to content

Commit

Permalink
Make -std optional for windows scripts.
Browse files Browse the repository at this point in the history
  • Loading branch information
alliepiper committed May 19, 2024
1 parent 0998715 commit b3c1c55
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion ci/windows/build_common.psm1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

Param(
[Parameter(Mandatory = $true)]
[Parameter(Mandatory = $false)]
[Alias("std")]
[ValidateNotNullOrEmpty()]
[ValidateSet(11, 14, 17, 20)]
Expand Down
2 changes: 1 addition & 1 deletion ci/windows/build_cub.ps1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

Param(
[Parameter(Mandatory = $true)]
[Parameter(Mandatory = $false)]
[Alias("std")]
[ValidateNotNullOrEmpty()]
[ValidateSet(11, 14, 17, 20)]
Expand Down
2 changes: 1 addition & 1 deletion ci/windows/build_cudax.ps1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

Param(
[Parameter(Mandatory = $true)]
[Parameter(Mandatory = $false)]
[Alias("std")]
[ValidateNotNullOrEmpty()]
[ValidateSet(17, 20)]
Expand Down
2 changes: 1 addition & 1 deletion ci/windows/build_libcudacxx.ps1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

Param(
[Parameter(Mandatory = $true)]
[Parameter(Mandatory = $false)]
[Alias("std")]
[ValidateNotNullOrEmpty()]
[ValidateSet(11, 14, 17, 20)]
Expand Down
2 changes: 1 addition & 1 deletion ci/windows/build_thrust.ps1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

Param(
[Parameter(Mandatory = $true)]
[Parameter(Mandatory = $false)]
[Alias("std")]
[ValidateNotNullOrEmpty()]
[ValidateSet(11, 14, 17, 20)]
Expand Down

0 comments on commit b3c1c55

Please sign in to comment.