Skip to content

Use OsPath and write out arrays to stdout #260

Use OsPath and write out arrays to stdout

Use OsPath and write out arrays to stdout #260

Workflow file for this run

name: Haskell CI
on:
push:
branches:
- master
pull_request:
jobs:
build:
name: GHC ${{ matrix.name }}
env:
CABAL_REINIT_CONFIG: y
LC_ALL: C.UTF-8
STACK_UPGRADE: "y"
CABAL_CHECK_RELAX: y
CABAL_NO_SANDBOX: y
PACKCHECK: "./packcheck.sh"
PACKCHECK_GITHUB_URL: "https://raw.githubusercontent.com/composewell/packcheck"
PACKCHECK_GITHUB_COMMIT: "v0.7.0"
BUILD: ${{ matrix.build }}
GHCUPVER: 0.1.20.0
GHCVER: ${{ matrix.ghc_version }}
CABALVER: ${{ matrix.cabal_version }}
CABAL_BUILD_OPTIONS: ${{ matrix.cabal_build_options }}
CABAL_PROJECT: ${{ matrix.cabal_project }}
DISABLE_DOCS: ${{ matrix.disable_docs }}
DISABLE_TEST: "y"
DISABLE_BENCH: "y"
# XXX macos?
runs-on: macos-latest
strategy:
fail-fast: false
matrix:
include:
- name: 9.4.4
ghc_version: 9.4.4
runner: ubuntu-latest
build: cabal
cabal_project: cabal.project.user
cabal_version: 3.8.1.0
disable_docs: "y"
disable_sdist_build: "y"
ignore_error: false
- name: 9.2.7
ghc_version: 9.2.7
runner: ubuntu-latest
build: cabal
cabal_project: cabal.project.user
cabal_version: 3.6.2.0
disable_docs: "y"
disable_sdist_build: "y"
ignore_error: false
- name: 8.10.7+macOS
ghc_version: 8.10.7
runner: macos-latest
build: cabal
cabal_project: cabal.project.user
cabal_version: 3.6.2.0
disable_docs: "y"
cabal_build_options: "--flag interop"
ignore_error: false
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v1
name: Cache common directories
with:
path: |
~/.cabal
~/.ghc
~/.local
~/.stack
~/.ghcup
key: ${{ runner.os }}-${{ matrix.ghc_version }}-cabal
- name: Download packcheck
run: |
# If a custom stack-yaml is specified, replace the default with that
#if test -e "$STACK_YAML"; then rm -f stack.yaml && ln -sv $STACK_YAML stack.yaml; else true; fi
#unset STACK_YAML
if test ! -e "$PACKCHECK"
then
if test -z "$PACKCHECK_GITHUB_COMMIT"
then
die "PACKCHECK_GITHUB_COMMIT is not specified."
fi
CURL=$(which curl)
PACKCHECK_URL=${PACKCHECK_GITHUB_URL}/${PACKCHECK_GITHUB_COMMIT}/packcheck.sh
$CURL -sL -o "$PACKCHECK" $PACKCHECK_URL
chmod +x $PACKCHECK
elif test ! -x "$PACKCHECK"
then
chmod +x $PACKCHECK
fi
- name: Run packcheck
run: |
bash -c "$PACKCHECK $BUILD"