* Skip CI tests for non-code changes
- Add dorny/paths-filter to detect code changes
- Run actual tests only when code/build files change
- Add skip jobs to satisfy required status checks
- Reduces CI time for documentation-only changes
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
* Add .scalafmt.conf to code change detection
- Ensures code format check runs when scalafmt config changes
- Important for maintaining consistent code formatting rules
* Add sbt launcher scripts to code change detection
- Includes sbt and sbt.bat in path filters
- Ensures tests run when build scripts are modified
* Remove test documentation file
- No longer needed for PR demonstration
- PR description already explains the changes
* Remove test-jdk skip jobs
- Remove unnecessary skip jobs for JDK tests
- Keep only code_format_skip for required status check
* Remove all skip jobs
- Remove code_format_skip job
- Simplify workflow to only run tests when code changes detected
---------
Co-authored-by: Claude <noreply@anthropic.com>
* Add CLAUDE.md for Claude Code guidance
This file provides essential guidance for Claude Code when working with
the snappy-java repository, including:
- Common build and test commands
- High-level architecture overview
- Platform support details
- Important implementation notes
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
* Remove outdated findbugs and jacoco commands
* Fix test command for debug logging
* Clarify test frameworks: AirSpec for Scala, JUnit for Java
---------
Co-authored-by: Claude <noreply@anthropic.com>
currently we have written a lambda (turns into anonymous class) which
invokes a MethodHandle for the java.util.zip.CRC32C constructor as the
Supplier<Checksum> implementation.
This has 2 layers of misdirection. The Supplier implementation spun up
by the jvm calls the anonymous lambda class, which then calls the
MethodHandle invoke. This leads to stack traces like:
use LambdaMetafactory to generate a Supplier<Checksum> which calls the
java.util.zip.CRC32C
Co-authored-by: bo8979 <bo8979@cerner.com>