placeos-build
Version, currently 1.2.049 versions
- 1.6.3latestJul 22, 2026
- 1.6.2not indexedJul 22, 2026
- 1.6.1not indexedJul 22, 2026
- 1.6.0not indexedJul 22, 2026
- 1.5.1not indexedJul 22, 2026
- 1.5.0not indexedJul 22, 2026
- 1.4.0not indexedJul 22, 2026
- 1.3.1not indexedJul 22, 2026
- 1.3.0not indexedJul 22, 2026
- 1.2.2not indexedJul 22, 2026
- 1.2.1not indexedJul 22, 2026
- 1.2.0not indexedJul 22, 2026
- 1.1.1not indexedJul 22, 2026
- 1.1.0not indexedJul 22, 2026
- 1.0.8not indexedJul 22, 2026
- 1.0.7not indexedJul 22, 2026
- 1.0.6not indexedJul 22, 2026
- 1.0.5not indexedJul 22, 2026
- 1.0.4not indexedJul 22, 2026
- 1.0.3not indexedJul 22, 2026
- 1.0.2not indexedJul 22, 2026
- 1.0.1not indexedJul 22, 2026
- 1.0.0not indexedJul 22, 2026
- 0.13.3not indexedJul 22, 2026
- 0.13.2not indexedJul 22, 2026
- 0.13.1not indexedJul 22, 2026
- 0.13.0not indexedJul 22, 2026
- 0.12.0not indexedJul 22, 2026
- 0.11.1not indexedJul 22, 2026
- 0.11.0not indexedJul 22, 2026
- 0.10.0not indexedJul 22, 2026
- 0.9.1not indexedJul 22, 2026
- 0.9.0not indexedJul 22, 2026
- 0.8.4not indexedJul 22, 2026
- 0.8.3not indexedJul 22, 2026
- 0.8.2not indexedJul 22, 2026
- 0.8.1not indexedJul 22, 2026
- 0.8.0not indexedJul 22, 2026
- 0.7.0not indexedJul 22, 2026
- 0.6.0not indexedJul 22, 2026
- 0.5.1not indexedJul 22, 2026
- 0.5.0not indexedJul 22, 2026
- 0.4.0not indexedJul 22, 2026
- 0.3.0not indexedJul 22, 2026
- 0.2.3not indexedJul 22, 2026
- 0.2.2not indexedJul 22, 2026
- 0.2.1not indexedJul 22, 2026
- 0.2.0not indexedJul 22, 2026
- 0.1.1not indexedJul 22, 2026
github.com/PlaceOS/build
PlaceOS build service for drivers.
Nothing has been indexed for 1.2.0 yet. The tag is recorded, its shard.yml has not been read, so the manifest and dependency list below are empty because they are unknown rather than because they are absent.
Installation
# Add this to your shard.yml
dependencies:
placeos-build:
github: PlaceOS/build
version: ~> 1.2.0Then run:
shards installshard.yml
No shard.yml has been indexed for 1.2.0. You can read it on the repository.
Dependencies
Unknown: the shard.yml for this version has not been read yet.
README
This README is the one indexed from the repository at its latest ref, not from the tag for this version.
PlaceOS Build Service
A service/tool for reproducibly compiling and caching build artefacts.
CLI
Build
$ ./bin/build build --help
Usage: ./bin/build build [OPTIONS]
Run as a CLI. Mainly for use in continuous integration.
Options:
-v, --version Display the application version
[default: false]
--branch TEXT Branch to checkout [required]
--commit TEXT Commit to check the file out to [required]
--repository-uri TEXT URI of the git repository [required]
--discover / --no-discover Discover drivers and compile them
[default: false]
--strict-driver-info / --no-strict-driver-info
Extract driver info on build [default: true]
--password TEXT Password for git repository
--username TEXT Username for git repository
--binary-store-path TEXT Where the binaries are mounted
[default: BINARY_STORE_PATH]
--crystal-version TEXT Varying this is currently unsupported
[default: CRYSTAL_VERSION]
--repository-path TEXT Path to existing repository
--aws-s3-bucket TEXT [default: AWS_S3_BUCKET]
--aws-secret TEXT [default: AWS_SECRET]
--aws-key TEXT [default: AWS_KEY]
--aws-region TEXT [default: AWS_REGION]
-e, --env List the application environment
[default: false]
--entrypoints TEXT Driver entrypoints relative to specified
repository [default: [] of String]
--help Show this message and exit.
Server
$ ./bin/build server --help
Usage: ./bin/build server [OPTIONS]
Run as a REST API, see <TODO: link to openapi.yml>
Options:
-v, --version Display the application version [default: false]
-e, --env List the application environment [default: false]
--aws-region TEXT [default: AWS_REGION]
--aws-key TEXT [default: AWS_KEY]
--aws-secret TEXT [default: AWS_SECRET]
--aws-s3-bucket TEXT [default: AWS_S3_BUCKET]
--host TEXT Specifies the server host [default: 127.0.0.1]
--port INTEGER Specifies the server port [default: 3000]
-w, --workers INTEGER Specifies the number of processes to handle requests
[default: 1]
-r, --routes List the application routes [default: false]
-c, --curl TEXT Perform a basic health check by requesting the URL
--help Show this message and exit.
Digest
$ ./bin/digest digest --help
Usage: ./bin/digest digest [OPTIONS] ENTRYPOINTS...
Outputs a CSV of digested crystal source graphs, formatted as FILE,HASH
Arguments:
ENTRYPOINTS [required]
Options:
-s, --shard-lock TEXT Specify a shard.lock
-v, --verbose Enable verbose logging [default: false]
--help Show this message and exit.
Requires
$ ./bin/digest requires --help
Usage: ./bin/digest requires [OPTIONS] ENTRYPOINTS...
Outputs a list of crystal files in a source graphs, one file per line
Arguments:
ENTRYPOINTS [required]
Options:
-s, --shard-lock TEXT Specify a shard.lock
--help Show this message and exit.
HTTP API
Repository Metadata
GET /repository/commits?url=[repository url]&count=[commit count: 50]
Returns the commits for a repository.
GET /repository/commits/<file>?url=[repository url]&count=[commit count: 50]
Returns the commits for a file.
GET /repository/discover/drivers?url=[repository url]&branch=[master]&commit=[HEAD]
Returns an array of files containing driver implementations for a repository.
GET /repository/branches?url=[repository url]
Returns the branches for a repository
Driver Artefacts
POST /build/driver/<file>?url=<repository url>&commit=<commit hash>
Triggers a build of object with as the entrypoint Returns…
- 200 if compiled
- 404 if entrypoint was not found
- 422 if the object failed to compile
GET /build/driver/<file>/metadata?url=<repository url>&commit=<commit hash>
Returns the metadata extracted from the built artefact.
GET /build/driver/<file>/docs?url=<repository url>&commit=<commit hash>
Returns the docs extracted from the artefact.
GET /build/driver?file=<driver entrypoint>&commit=<commit hash>&crystal_version=<version>&digest=<SHA-1 digest>
Query the driver store for driver binaries.
GET /build/driver/<file>/compiled?url=<repository url>&commit=<commit hash>
Returns...
- 200 if compiled
- 404 not compiled
Contributing
See CONTRIBUTING.md.
Contributors
- Caspian Baska - creator and maintainer
Documentation
Built from the current release. The first visit to a release nobody has asked for starts its build.
Links
This release
- Version
1.2.0- Tagged
- Jul 22, 2026
- Commit
8d65b0b5460a- Indexed
- not yet
Dependents
No indexed shard depends on this one yet.
Repository
github.com/PlaceOS/build
Metadata
- Created
- Aug 12, 2026
- Updated
- Aug 15, 2026
- Synced
- Aug 15, 2026
- Versions
- 49