java-build-artifact-validation
Summary
Validate that a Java application build workflow completes successfully and produces expected executable artifacts. This skill monitors GitHub Actions CI/CD pipelines, retrieves build logs and artifacts, and documents pass/fail outcomes to verify reproducibility of development releases.
When to use
When you need to verify that a Java project's automated build pipeline (GitHub Actions workflow) executes without errors and generates distributable artifacts (e.g., .deb installers, portable binaries, or .jar files). Use this skill when assessing whether a development build release workflow for a multi-platform Java application (Windows, macOS, Linux) completes successfully and produces platform-specific installers or artifacts.
When NOT to use
- Input is a pre-built binary or already-packaged release (not a CI/CD workflow run)
- Workflow is private or access credentials are not available to retrieve logs and artifacts
- The Java project does not use GitHub Actions or does not expose workflow runs publicly
Inputs
Outputs
- Workflow execution status (pass/fail/error)
- Build artifact manifest (file names, sizes, download links for portable and installer distributions)
- Structured report file (timestamp, workflow status, artifact links, error logs if applicable)
- Build log excerpts documenting dependency resolution and compilation steps
How to apply
Access the GitHub Actions workflow page for the target repository (e.g., https://github.com/mzmine/mzmine/actions/workflows/dev_build_release.yml). Retrieve the most recent workflow run and examine the execution logs to identify pass/fail status. For mzmine specifically, verify that JDK 25 and JavaFX 24 dependencies are correctly resolved during the build. Document the workflow status, timestamp, any error messages, and links to produced artifacts (portable versions, installers for Windows/macOS/Linux). Compare artifact checksums or metadata against expected outputs to confirm build reproducibility. Record all findings in a structured report file with workflow URL, status badge, execution logs excerpt, and artifact inventory.
Related tools
Evaluation signals
- Workflow badge status at https://github.com/mzmine/mzmine/actions/workflows/dev_build_release.yml shows 'passing' or 'failing' clearly
- Build log contains no fatal compilation errors; all dependencies (JDK 25, JavaFX 24) resolved successfully
- Artifact inventory includes all expected platform-specific files: .deb installer for Linux, .dmg or .pkg for macOS, .msi or .exe for Windows
- Final build output directory (build/jpackage for mzmine) contains executable artifacts with non-zero file sizes
- Workflow execution timestamp and artifact links are populated in the structured report; report matches most recent run on master branch
Limitations
- Workflow access and artifact visibility depend on repository permissions; private repositories or restricted artifacts cannot be validated externally
- Build success does not guarantee runtime correctness or functional testing; only confirms compilation and packaging steps completed
- JDK and JavaFX version requirements are version-specific (mzmine currently requires JDK 25+ and JavaFX 24); builds may fail if workflow uses incompatible versions
- No changelog is currently available in the mzmine repository, limiting ability to correlate build artifacts with specific code changes or fixes
Evidence
- [other] Access the GitHub Actions workflow page at https://github.com/mzmine/mzmine/actions/workflows/dev_build_release.yml. Retrieve the most recent workflow run status and execution logs.: "Access the GitHub Actions workflow page at https://github.com/mzmine/mzmine/actions/workflows/dev_build_release.yml. Retrieve the most recent workflow run status and execution logs."
- [readme] mzmine development requires Java Development Kit (JDK) version 23 or newer: "mzmine development requires Java Development Kit (JDK) version 23 or newer (http://jdk.java.net)."
- [readme] To build the mzmine package from the sources, run the following command: ./gradlew. The final mzmine distribution will be placed in build/jpackage: "To build the mzmine package from the sources, run the following command: ./gradlew […] The final mzmine distribution will be placed in build/jpackage"
- [readme] Download options include portable versions and installers for the Window, macOS, and Linux.: "Download options include portable versions and installers for the Window, macOS, and Linux."
- [readme] : ""
1---2name: java-build-artifact-validation3description: Use when when you need to verify that a Java project's automated build pipeline (GitHub Actions workflow) executes without errors and generates distributable artifacts (e.g., .deb installers, portable binaries, or .jar files).4license: CC-BY-4.05---67# java-build-artifact-validation89## Summary1011Validate that a Java application build workflow completes successfully and produces expected executable artifacts. This skill monitors GitHub Actions CI/CD pipelines, retrieves build logs and artifacts, and documents pass/fail outcomes to verify reproducibility of development releases.1213## When to use1415When you need to verify that a Java project's automated build pipeline (GitHub Actions workflow) executes without errors and generates distributable artifacts (e.g., .deb installers, portable binaries, or .jar files). Use this skill when assessing whether a development build release workflow for a multi-platform Java application (Windows, macOS, Linux) completes successfully and produces platform-specific installers or artifacts.1617## When NOT to use1819- Input is a pre-built binary or already-packaged release (not a CI/CD workflow run)20- Workflow is private or access credentials are not available to retrieve logs and artifacts21- The Java project does not use GitHub Actions or does not expose workflow runs publicly2223## Inputs2425- GitHub Actions workflow URL (e.g., https://github.com/mzmine/mzmine/actions/workflows/dev_build_release.yml)26- Repository commit hash or branch reference (default: master/main branch state)27- Build environment specification (JDK version, JavaFX version, OS targets)2829## Outputs3031- Workflow execution status (pass/fail/error)32- Build artifact manifest (file names, sizes, download links for portable and installer distributions)33- Structured report file (timestamp, workflow status, artifact links, error logs if applicable)34- Build log excerpts documenting dependency resolution and compilation steps3536## How to apply3738Access the GitHub Actions workflow page for the target repository (e.g., https://github.com/mzmine/mzmine/actions/workflows/dev_build_release.yml). Retrieve the most recent workflow run and examine the execution logs to identify pass/fail status. For mzmine specifically, verify that JDK 25 and JavaFX 24 dependencies are correctly resolved during the build. Document the workflow status, timestamp, any error messages, and links to produced artifacts (portable versions, installers for Windows/macOS/Linux). Compare artifact checksums or metadata against expected outputs to confirm build reproducibility. Record all findings in a structured report file with workflow URL, status badge, execution logs excerpt, and artifact inventory.3940## Related tools4142- **mzmine** (Java application whose build workflow is validated; requires JDK 25 and JavaFX 24 to build successfully) — https://github.com/mzmine/mzmine43- **JDK 25** (Java Development Kit version required to compile mzmine source code) — http://jdk.java.net44- **JavaFX 24** (Graphics toolkit dependency required for mzmine GUI; must be resolved during build)45- **GitHub Actions** (CI/CD platform that executes the dev_build_release.yml workflow and produces platform-specific installers) — https://github.com/mzmine/mzmine/actions/workflows/dev_build_release.yml4647## Evaluation signals4849- Workflow badge status at https://github.com/mzmine/mzmine/actions/workflows/dev_build_release.yml shows 'passing' or 'failing' clearly50- Build log contains no fatal compilation errors; all dependencies (JDK 25, JavaFX 24) resolved successfully51- Artifact inventory includes all expected platform-specific files: .deb installer for Linux, .dmg or .pkg for macOS, .msi or .exe for Windows52- Final build output directory (build/jpackage for mzmine) contains executable artifacts with non-zero file sizes53- Workflow execution timestamp and artifact links are populated in the structured report; report matches most recent run on master branch5455## Limitations5657- Workflow access and artifact visibility depend on repository permissions; private repositories or restricted artifacts cannot be validated externally58- Build success does not guarantee runtime correctness or functional testing; only confirms compilation and packaging steps completed59- JDK and JavaFX version requirements are version-specific (mzmine currently requires JDK 25+ and JavaFX 24); builds may fail if workflow uses incompatible versions60- No changelog is currently available in the mzmine repository, limiting ability to correlate build artifacts with specific code changes or fixes6162## Evidence6364- [other] Access the GitHub Actions workflow page at https://github.com/mzmine/mzmine/actions/workflows/dev_build_release.yml. Retrieve the most recent workflow run status and execution logs.: "Access the GitHub Actions workflow page at https://github.com/mzmine/mzmine/actions/workflows/dev_build_release.yml. Retrieve the most recent workflow run status and execution logs."65- [readme] mzmine development requires Java Development Kit (JDK) version 23 or newer: "mzmine development requires Java Development Kit (JDK) version 23 or newer (http://jdk.java.net)."66- [readme] To build the mzmine package from the sources, run the following command: ./gradlew. The final mzmine distribution will be placed in build/jpackage: "To build the mzmine package from the sources, run the following command: ./gradlew […] The final mzmine distribution will be placed in build/jpackage"67- [readme] Download options include portable versions and installers for the Window, macOS, and Linux.: "Download options include portable versions and installers for the Window, macOS, and Linux."68- [readme] [](https://github.com/mzmine/mzmine/actions/workflows/dev_build_release.yml): "[](https://github.com/mzmine/mzmine/actions/workflows/dev_build_release.yml)"