Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dtolnay/install-buck2
Install precompiled Buck2 build system
https://github.com/dtolnay/install-buck2
Last synced: about 1 month ago
JSON representation
Install precompiled Buck2 build system
- Host: GitHub
- URL: https://github.com/dtolnay/install-buck2
- Owner: dtolnay
- License: mit
- Created: 2023-05-03T20:41:18.000Z (over 1 year ago)
- Default Branch: latest
- Last Pushed: 2024-04-28T06:23:25.000Z (7 months ago)
- Last Synced: 2024-10-02T02:15:41.947Z (about 1 month ago)
- Homepage:
- Size: 46.9 KB
- Stars: 9
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-buck2 - install-buck2
README
# GitHub Action to install Buck2
[](https://github.com/dtolnay/install-buck2/actions?query=branch%3Alatest)
This GitHub Action installs a precompiled `buck2` binary from
.```yaml
name: test suite
on: [push, pull_request]jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/install-buck2@latest
- run: buck build //...
```## Inputs
Name
Description
prelude-submodule
Optional. Relative path at which to checkout the
buck2-prelude
repo as a submodule at the correct commit matching the installed buck2
executable.
## Outputs
Name
Description
prelude-hash
Commit hash of the
buck2-prelude
repo that matches the installed buck2 executable.