|
| 1 | +name: CI |
| 2 | + |
| 3 | +# Trigger the workflow on push or pull request, but only for the master branch |
| 4 | +on: |
| 5 | + pull_request: |
| 6 | + push: |
| 7 | + branches: [master] |
| 8 | + |
| 9 | +jobs: |
| 10 | + ghcjs: |
| 11 | + name: ubuntu-18.04 / ghcjs 8.4 |
| 12 | + runs-on: "ubuntu-18.04" |
| 13 | + |
| 14 | + steps: |
| 15 | + - uses: actions/checkout@v2 |
| 16 | + |
| 17 | + - name: "Setup PATH" |
| 18 | + run: | |
| 19 | + echo "PATH=$HOME/.cabal/bin:/opt/ghcjs/8.4/bin:$PATH" >> $GITHUB_ENV |
| 20 | +
|
| 21 | + - name: Install ghcjs and cabal |
| 22 | + run: | |
| 23 | + # Default GitHub image dropped ppa:hvr/ghc, so we add it ourselves |
| 24 | + sudo add-apt-repository ppa:hvr/ghc |
| 25 | + sudo add-apt-repository ppa:hvr/ghcjs |
| 26 | + sudo apt-get update -y |
| 27 | + sudo apt-get install ghcjs-8.4 |
| 28 | + sudo apt-get install cabal-install |
| 29 | +
|
| 30 | + # Override cabal.project with the lightweight GHCJS one |
| 31 | + cp cabal.ghcjs.project cabal.project |
| 32 | + cat cabal.project |
| 33 | +
|
| 34 | + - name: Cabal update and freeze |
| 35 | + run: | |
| 36 | + cabal v2-update |
| 37 | + cabal v2-freeze |
| 38 | +
|
| 39 | + |
| 40 | + name: Cache ~/.cabal/store and dist-newstyle |
| 41 | + with: |
| 42 | + path: | |
| 43 | + ~/.cabal/store |
| 44 | + dist-newstyle |
| 45 | + key: ubuntu-18.04-ghcjs8.4-${{ hashFiles('cabal.project.freeze') }} |
| 46 | + restore-keys: | |
| 47 | + ubuntu-18.04-ghcjs8.4- |
| 48 | +
|
| 49 | + - name: Install cabal-plan |
| 50 | + run: | |
| 51 | + cabal v2-install -w /opt/ghc/8.4.4/bin/ghc --ignore-project cabal-plan --constraint='cabal-plan ^>=0.6.0.0' --constraint='cabal-plan +exe' |
| 52 | +
|
| 53 | + - name: Build |
| 54 | + run: | |
| 55 | + cabal v2-build --ghcjs -w /opt/ghcjs/8.4/bin/ghcjs --enable-tests --enable-benchmarks all |
| 56 | +
|
| 57 | + - name: Run tests |
| 58 | + run: | |
| 59 | + # cabal v2-test does not work with GHCJS |
| 60 | + # See: https://github.com/haskell/cabal/issues/6175 |
| 61 | + # |
| 62 | + # This invokes cabal-plan to figure out test binaries, and invokes them with node. |
| 63 | + cabal-plan list-bins '*:test:*' | while read -r line; do testpkg=$(echo "$line" | perl -pe 's/:.*//'); testexe=$(echo "$line" | awk '{ print $2 }'); echo "testing $textexe in package $textpkg"; (cd "$(pkgdir $testpkg)" && nodejs "$testexe".jsexe/all.js); done |
0 commit comments