This plugin sets up your CI/CD pipeline with a specific version of purescript.
Add the following command to your CI configuration file:
fluentci run --wasm purescript setup
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. |
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"])?;
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