Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fluent-ci-templates/buck-pipeline
A ready-to-use Pipeline for Buck projects.
https://github.com/fluent-ci-templates/buck-pipeline
buck cicd deno pipeline pipelines-as-code typescript
Last synced: about 5 hours ago
JSON representation
A ready-to-use Pipeline for Buck projects.
- Host: GitHub
- URL: https://github.com/fluent-ci-templates/buck-pipeline
- Owner: fluent-ci-templates
- License: mit
- Created: 2023-09-16T17:14:44.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-08-02T13:58:27.000Z (4 months ago)
- Last Synced: 2024-08-03T08:57:52.226Z (4 months ago)
- Topics: buck, cicd, deno, pipeline, pipelines-as-code, typescript
- Language: TypeScript
- Homepage:
- Size: 152 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Buck Pipeline
[![fluentci pipeline](https://shield.fluentci.io/x/buck)](https://pkg.fluentci.io/buck)
![deno compatibility](https://shield.deno.dev/deno/^1.41)
[![](https://jsr.io/badges/@fluentci/buck)](https://jsr.io/@fluentci/buck)
[![](https://img.shields.io/codecov/c/gh/fluent-ci-templates/buck-pipeline)](https://codecov.io/gh/fluent-ci-templates/buck-pipeline)A ready-to-use Pipeline for [Buck](https://buck2.build/) projects.
## 🚀 Usage
Run the following command in your project:
```bash
fluentci run buck
```Or, if you want to use it as a template:
```bash
fluentci init -t buck
```This will create a `.fluentci` folder in your project.
Now you can run the pipeline with:
```bash
fluentci run .
```## 🧩 Dagger Module
Use as a [Dagger](https://dagger.io) module:
```bash
dagger install github.com/fluent-ci-templates/buck-pipeline@main
```Call functions from the module:
```bash
dagger call -m github.com/fluent-ci-templates/buck-pipeline@main build --src .
```## Jobs
| Job | Description |
| --------- | ------------- |
| build | Build project |
| test | Run tests |## Programmatic usage
You can also use this pipeline programmatically:
```ts
import { test, build } from "jsr:@fluentci/buck";await test(".");
await build(".");
```