Skip to content

Commit

Permalink
fix args
Browse files Browse the repository at this point in the history
  • Loading branch information
trxcllnt committed May 3, 2024
1 parent 2ebafe2 commit 6768edf
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/build-rapids.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,16 +87,17 @@ jobs:
for opt in OFF ON; do
# Build arguments list
args=(${{ matrix.args }});
args_=(${{ matrix.args }});
# Enable/disable tests
args=("${args[@]/#/"-D"}");
args=("${args[@]/%/"=${opt}"}");
args_=("${args_[@]/#/"-D"}");
args_=("${args_[@]/%/"=${opt}"}");
# Use the local CCCL mount
args+=(-DCPM_CCCL_SOURCE="${HOME}/cccl");
args+=(-DBUILD_SHARED_LIBS=ON);
args_+=(-DCPM_CCCL_SOURCE="${HOME}/cccl");
args_+=(-DBUILD_SHARED_LIBS=ON);
for lib in ${{ matrix.libs }}; do
args=("${args_[@]}")
if test "${lib}" != "cugraph"; then
args=(-v -j "${args[@]}");
else
Expand Down

0 comments on commit 6768edf

Please sign in to comment.