Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fluentci-io/purescript-plugin
Set up your CI/CD Pipeline with a specific version of PureScript
https://github.com/fluentci-io/purescript-plugin
continuous-delivery continuous-integration plugin purescript rust wasm webassembly
Last synced: about 2 months ago
JSON representation
Set up your CI/CD Pipeline with a specific version of PureScript
- Host: GitHub
- URL: https://github.com/fluentci-io/purescript-plugin
- Owner: fluentci-io
- License: mit
- Created: 2024-04-17T14:36:36.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-07-26T05:07:22.000Z (6 months ago)
- Last Synced: 2024-07-27T05:46:20.992Z (6 months ago)
- Topics: continuous-delivery, continuous-integration, plugin, purescript, rust, wasm, webassembly
- Language: Rust
- Homepage:
- Size: 10.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Purescript Plugin
[![fluentci pipeline](https://shield.fluentci.io/x/purescript)](https://pkg.fluentci.io/purescript)
[![ci](https://github.com/fluentci-io/purescript-plugin/actions/workflows/ci.yml/badge.svg)](https://github.com/fluentci-io/purescript-plugin/actions/workflows/ci.yml)This plugin sets up your CI/CD pipeline with a specific version of [purescript](https://www.purescript.org/).
## 🚀 Usage
Add the following command to your CI configuration file:
```bash
fluentci run --wasm purescript setup
```## Functions
| Name | Description |
| ------------- | ----------------------------------------------------------------- |
| setup | Installs a specific version of purescript. |
| build | Install the dependencies and compile the current package |
| test | Test the project with some module, default Test.Main |
| bundle_app | Bundle the project into an executable |
| bundle_module | Bundle the project into a module |
| docs | Generate docs for the project and its dependencies |
| install | Install (download) all dependencies listed in spago.dhall |
| verify | Verify that a single package is consistent with the Package Set |
| verify_set | Verify that the whole Package Set builds correctly |
| bump_version | Bump and tag a new version, and generate bower.json, in preparation for release. |## 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/purescript@v0.1.1?wasm=1", "setup", vec!["latest"])?;
```## 📚 Examples
Github Actions:
```yaml
- name: Setup Fluent CI CLI
uses: fluentci-io/setup-fluentci@v5
with:
wasm: true
plugin: purescript
args: |
setup
- name: Show purescript version
run: |
type purs
type spago
purs --version
spago --version
```