How do I verify my build environment is ready?
Run the verification command:
gradle verify
This will check for Java, build.properties, required directories, and 7-Zip.
Building & Compilation
How do I build a specific version?
Use the release task with the version parameter:
# Non-interactive mode
gradle release -PbundleVersion=7.5.4
# Interactive mode (prompts for version selection)
gradle release
How do I build all available versions at once?
Use the releaseAll task:
gradle releaseAll
How can I see what versions are available to build?
List available versions with:
gradle listVersions
Where are the build outputs stored?
By default, builds are stored in:
C:/Bearsampp-build/tools/powershell/{release-date}/
You can customize this location in build.properties using the build.path property.
What files are generated during a build?
For each version, you get:
- The main archive (
.7zor.zip) - MD5 checksum (
.md5) - SHA1 checksum (
.sha1) - SHA256 checksum (
.sha256) - SHA512 checksum (
.sha512)