Skip to content

Set up your CI/CD Pipeline with a specific version of PureScript

License

Notifications You must be signed in to change notification settings

fluentci-io/purescript-plugin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Purescript Plugin

fluentci pipeline ci

This plugin sets up your CI/CD pipeline with a specific version of purescript.

🚀 Usage

Add the following command to your CI configuration file:

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:

[dependencies]
fluentci-pdk = "0.1.9"

Use the following code to call the plugin:

use fluentci_pdk::dag;

// ...

dag().call("https://pkg.fluentci.io/[email protected]?wasm=1", "setup", vec!["latest"])?;

📚 Examples

Github Actions:

- 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