binary-signal opened a new pull request, #61: URL: https://github.com/apache/fluss-rust/pull/61
CI jobs for #53 fails, This PR fixes the issue, specifically when running the CI on macOS. It also improves the CI pipeline by defining a Python version matrix: **3.11, 3.12, 3.13**. Python 3.14 support will be added later, so the current “latest usable” version is assumed to be 3.13, giving us a 3-version range. A caching step for the Rust build was added as well, allowing to reuse build artifacts in downstream actions speeding up the CI. Additionally, a portability fix was made in the Bash script, changing: ```sh if [ "$RUNNER_OS" == "Linux" ]; then ``` to the POSIX-compatible: ```sh if [ "$RUNNER_OS" = "Linux" ]; then ``` -- 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]
