Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ocurrent/ocurrent
Keeps things up-to-date (a CI/CD pipeline OCaml eDSL)
https://github.com/ocurrent/ocurrent
ci edsl ocaml
Last synced: 3 months ago
JSON representation
Keeps things up-to-date (a CI/CD pipeline OCaml eDSL)
- Host: GitHub
- URL: https://github.com/ocurrent/ocurrent
- Owner: ocurrent
- License: apache-2.0
- Created: 2019-05-29T13:29:22.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-10-22T02:08:15.000Z (4 months ago)
- Last Synced: 2024-10-23T03:10:41.901Z (4 months ago)
- Topics: ci, edsl, ocaml
- Language: OCaml
- Homepage:
- Size: 3.03 MB
- Stars: 139
- Watchers: 14
- Forks: 38
- Open Issues: 29
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGES.md
- License: LICENSE
Awesome Lists containing this project
- awesome-list - ocurrent - to-date (a CI/CD pipeline OCaml eDSL) | ocurrent | 89 | (OCaml)
README
# OCurrent
[![OCaml-CI Build Status](https://img.shields.io/endpoint?url=https%3A%2F%2Fci.ocamllabs.io%2Fbadge%2Focurrent%2Focurrent%2Fmaster&logo=ocaml)](https://ci.ocamllabs.io/github/ocurrent/ocurrent)
OCurrent allows you to specify a workflow / pipeline for keeping things up-to-date.
For example, the pipeline shown above fetches the head of a GitHub repository's
`master` branch, builds it, runs the tests, and deploys the binary if the tests
pass. When a new commit is pushed, it runs the pipeline again.Another use might be to keep the GitHub build status of each PR in your Git
repository showing the result of fetching, building and testing the PR's head
commit. If the head commit changes, the result must be recalculated.An OCurrent pipeline is written using an OCaml eDSL. When OCurrent evaluates it,
it records the inputs used (e.g. the current set of open PRs and the head of each
one), monitors them, and automatically recalculates when an input changes.Larger uses of OCurrent include the
[OCaml Docker base image builder](https://github.com/ocurrent/docker-base-images) and
[ocaml-ci](https://github.com/ocurrent/ocaml-ci/), which is the CI that tests this repository itself.## Documentation
The [OCurrent docs](doc/index.md) contains user documentation and examples.
In particular, you might like to start by reading about the
[example pipelines](doc/example_pipelines.md) or how to [write your own plugins](doc/writing_plugins.md).For technical docs, see the [API Documentation](https://ocurrent.github.io/ocurrent/index.html).
## Licensing
OCurrent is licensed under the Apache License, Version 2.0.
See [LICENSE](LICENSE) for the full license text.