Update CI and packages for PureScript 0.14
parent
4975e73125
commit
e851110e1c
|
@ -0,0 +1,47 @@
|
||||||
|
name: CI
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [master]
|
||||||
|
pull_request:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Set up Node toolchain
|
||||||
|
uses: actions/setup-node@v1
|
||||||
|
with:
|
||||||
|
node-version: "12.x"
|
||||||
|
|
||||||
|
- name: Cache PureScript dependencies
|
||||||
|
uses: actions/cache@v2
|
||||||
|
with:
|
||||||
|
key: ${{ runner.os }}-spago-${{ hashFiles('**/*.dhall') }}
|
||||||
|
path: |
|
||||||
|
.spago
|
||||||
|
output
|
||||||
|
|
||||||
|
- name: Cache NPM dependencies
|
||||||
|
uses: actions/cache@v2
|
||||||
|
env:
|
||||||
|
cache-name: cache-node-modules
|
||||||
|
with:
|
||||||
|
path: ~/.npm
|
||||||
|
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package.json') }}
|
||||||
|
restore-keys: |
|
||||||
|
${{ runner.os }}-build-${{ env.cache-name }}-
|
||||||
|
${{ runner.os }}-build-
|
||||||
|
${{ runner.os }}-
|
||||||
|
|
||||||
|
- name: Install NPM dependencies
|
||||||
|
run: npm install
|
||||||
|
|
||||||
|
- name: Build the project
|
||||||
|
run: npm run build
|
||||||
|
|
||||||
|
- name: Run the tests
|
||||||
|
run: npm run test
|
|
@ -1,13 +1,14 @@
|
||||||
/bower_components/
|
.*
|
||||||
/node_modules/
|
!.gitignore
|
||||||
/.pulp-cache/
|
!.github
|
||||||
/output/
|
|
||||||
/generated-docs/
|
output
|
||||||
/.psc-package/
|
generated-docs
|
||||||
/.psc*
|
bower_components
|
||||||
/.purs*
|
node_modules
|
||||||
/.psa*
|
|
||||||
/.spago
|
package-lock.json
|
||||||
/.cache/
|
*.lock
|
||||||
/dist/
|
|
||||||
/prod/*
|
dist/
|
||||||
|
prod/*
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
import Prelude
|
|
|
@ -1,9 +0,0 @@
|
||||||
language: node_js
|
|
||||||
dist: trusty
|
|
||||||
sudo: required
|
|
||||||
node_js: stable
|
|
||||||
install:
|
|
||||||
- npm install
|
|
||||||
script:
|
|
||||||
- npm run build
|
|
||||||
- npm run test
|
|
|
@ -7,6 +7,7 @@
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "spago build",
|
"build": "spago build",
|
||||||
|
"test": "spago test",
|
||||||
"serve": "parcel dev/index.html --open",
|
"serve": "parcel dev/index.html --open",
|
||||||
"build-prod": "mkdir -p prod && cp dev/index.html prod/ && rm -rf dist && spago bundle-app --to prod/index.js && parcel build prod/index.html"
|
"build-prod": "mkdir -p prod && cp dev/index.html prod/ && rm -rf dist && spago bundle-app --to prod/index.js && parcel build prod/index.html"
|
||||||
}
|
}
|
||||||
|
|
127
packages.dhall
127
packages.dhall
|
@ -1,127 +1,4 @@
|
||||||
{-
|
|
||||||
Welcome to your new Dhall package-set!
|
|
||||||
|
|
||||||
Below are instructions for how to edit this file for most use
|
|
||||||
cases, so that you don't need to know Dhall to use it.
|
|
||||||
|
|
||||||
## Warning: Don't Move This Top-Level Comment!
|
|
||||||
|
|
||||||
Due to how `dhall format` currently works, this comment's
|
|
||||||
instructions cannot appear near corresponding sections below
|
|
||||||
because `dhall format` will delete the comment. However,
|
|
||||||
it will not delete a top-level comment like this one.
|
|
||||||
|
|
||||||
## Use Cases
|
|
||||||
|
|
||||||
Most will want to do one or both of these options:
|
|
||||||
1. Override/Patch a package's dependency
|
|
||||||
2. Add a package not already in the default package set
|
|
||||||
|
|
||||||
This file will continue to work whether you use one or both options.
|
|
||||||
Instructions for each option are explained below.
|
|
||||||
|
|
||||||
### Overriding/Patching a package
|
|
||||||
|
|
||||||
Purpose:
|
|
||||||
- Change a package's dependency to a newer/older release than the
|
|
||||||
default package set's release
|
|
||||||
- Use your own modified version of some dependency that may
|
|
||||||
include new API, changed API, removed API by
|
|
||||||
using your custom git repo of the library rather than
|
|
||||||
the package set's repo
|
|
||||||
|
|
||||||
Syntax:
|
|
||||||
Replace the overrides' "{=}" (an empty record) with the following idea
|
|
||||||
The "//" or "⫽" means "merge these two records and
|
|
||||||
when they have the same value, use the one on the right:"
|
|
||||||
-------------------------------
|
|
||||||
let overrides =
|
|
||||||
{ packageName =
|
|
||||||
upstream.packageName // { updateEntity1 = "new value", updateEntity2 = "new value" }
|
|
||||||
, packageName =
|
|
||||||
upstream.packageName // { version = "v4.0.0" }
|
|
||||||
, packageName =
|
|
||||||
upstream.packageName // { repo = "https://www.example.com/path/to/new/repo.git" }
|
|
||||||
}
|
|
||||||
-------------------------------
|
|
||||||
|
|
||||||
Example:
|
|
||||||
-------------------------------
|
|
||||||
let overrides =
|
|
||||||
{ halogen =
|
|
||||||
upstream.halogen // { version = "master" }
|
|
||||||
, halogen-vdom =
|
|
||||||
upstream.halogen-vdom // { version = "v4.0.0" }
|
|
||||||
}
|
|
||||||
-------------------------------
|
|
||||||
|
|
||||||
### Additions
|
|
||||||
|
|
||||||
Purpose:
|
|
||||||
- Add packages that aren't already included in the default package set
|
|
||||||
|
|
||||||
Syntax:
|
|
||||||
Replace the additions' "{=}" (an empty record) with the following idea:
|
|
||||||
-------------------------------
|
|
||||||
let additions =
|
|
||||||
{ package-name =
|
|
||||||
{ dependencies =
|
|
||||||
[ "dependency1"
|
|
||||||
, "dependency2"
|
|
||||||
]
|
|
||||||
, repo =
|
|
||||||
"https://example.com/path/to/git/repo.git"
|
|
||||||
, version =
|
|
||||||
"tag ('v4.0.0') or branch ('master')"
|
|
||||||
}
|
|
||||||
, package-name =
|
|
||||||
{ dependencies =
|
|
||||||
[ "dependency1"
|
|
||||||
, "dependency2"
|
|
||||||
]
|
|
||||||
, repo =
|
|
||||||
"https://example.com/path/to/git/repo.git"
|
|
||||||
, version =
|
|
||||||
"tag ('v4.0.0') or branch ('master')"
|
|
||||||
}
|
|
||||||
, etc.
|
|
||||||
}
|
|
||||||
-------------------------------
|
|
||||||
|
|
||||||
Example:
|
|
||||||
-------------------------------
|
|
||||||
let additions =
|
|
||||||
{ benchotron =
|
|
||||||
{ dependencies =
|
|
||||||
[ "arrays"
|
|
||||||
, "exists"
|
|
||||||
, "profunctor"
|
|
||||||
, "strings"
|
|
||||||
, "quickcheck"
|
|
||||||
, "lcg"
|
|
||||||
, "transformers"
|
|
||||||
, "foldable-traversable"
|
|
||||||
, "exceptions"
|
|
||||||
, "node-fs"
|
|
||||||
, "node-buffer"
|
|
||||||
, "node-readline"
|
|
||||||
, "datetime"
|
|
||||||
, "now"
|
|
||||||
]
|
|
||||||
, repo =
|
|
||||||
"https://github.com/hdgarrood/purescript-benchotron.git"
|
|
||||||
, version =
|
|
||||||
"v7.0.0"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
-------------------------------
|
|
||||||
-}
|
|
||||||
|
|
||||||
let upstream =
|
let upstream =
|
||||||
https://raw.githubusercontent.com/purescript/package-sets/a0938edbed99b8739dcfc9303bda8e264f7fe853/src/packages.dhall sha256:595d52db8e1a061c5b5b7bddeea05c3d7167cd8ead86f19554611c568464f21f
|
https://github.com/purescript/package-sets/releases/download/psc-0.14.0-20210309/packages.dhall sha256:585332a8a11c6420d7287943f81bc2121746cdd352f2cf3f5ecf65053f2afcd3
|
||||||
|
|
||||||
let overrides = {=}
|
in upstream
|
||||||
|
|
||||||
let additions = {=}
|
|
||||||
|
|
||||||
in upstream // overrides // additions
|
|
||||||
|
|
Loading…
Reference in New Issue