Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fluentci-io/haskell-plugin
Set up your CI/CD with a specific version of Haskell
https://github.com/fluentci-io/haskell-plugin
continuous-delivery continuous-integration haskell plugin rust wasm webassembly
Last synced: 5 days ago
JSON representation
Set up your CI/CD with a specific version of Haskell
- Host: GitHub
- URL: https://github.com/fluentci-io/haskell-plugin
- Owner: fluentci-io
- License: mit
- Created: 2024-04-17T16:58:24.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-07-26T04:34:29.000Z (6 months ago)
- Last Synced: 2024-11-20T20:55:50.848Z (2 months ago)
- Topics: continuous-delivery, continuous-integration, haskell, plugin, rust, wasm, webassembly
- Language: Rust
- Homepage:
- Size: 7.81 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Haskell Plugin
[![ci](https://github.com/fluentci-io/haskell-plugin/actions/workflows/ci.yml/badge.svg)](https://github.com/fluentci-io/haskell-plugin/actions/workflows/ci.yml)
This plugin sets up your CI/CD pipeline with a specific version of [haskell](https://www.haskell.org/).
## 🚀 Usage
Add the following command to your CI configuration file:
```bash
fluentci run --wasm haskell setup
```## Functions
| Name | Description |
| ------ | ------------------------------------------ |
| setup | Installs a specific version of haskell. |
| build | Compile targets within the project. |
| test | Run test-suites. |
| install | Install packages. |
| check |Check the package for common mistakes. |
| sdist | Generate a source distribution file (.tar.gz). |
| upload | Uploads source packages or documentation to Hackage. |
| report | Upload build reports to a remote server. |## Code Usage
Add `fluentci-pdk` crate to your `Cargo.toml`:
```toml
[dependencies]
fluentci-pdk = "0.1.9"
```Use the following code to call the plugin:
```rust
use fluentci_pdk::dag;// ...
dag().call("https://pkg.fluentci.io/[email protected]?wasm=1", "setup", vec!["latest"])?;
```## 📚 Examples
Github Actions:
```yaml
- name: Setup Fluent CI CLI
uses: fluentci-io/setup-fluentci@v5
with:
wasm: true
plugin: haskell
args: |
setup
- name: Show ghc, cabal version
run: |
type ghc
type cabal
ghc --version
cabal --version
```