PragmaTwice opened a new pull request, #1256: URL: https://github.com/apache/incubator-kvrocks/pull/1256
Currently, we use `nargs=*` for parsing `-D` arguments, e.g. `-D X=1 Y=2` -> `["X=1", "Y=2"]`, `-D X=1 -D Y=2` -> `["Y=2"]`. We need to change it to `action=append` to align the behavior with CMake, e.g. `-D X=1 -D Y=2` -> `["X=1", "Y=2"]`. It solved #1254 and fix all wrong argument parsing in GitHub Actions. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
