2020-06-06 23:49:58 +03:00
|
|
|
# Light CI tests: build and run functional tests with one GHC version,
|
|
|
|
# using less compute power and emitting less carbon.
|
|
|
|
#
|
|
|
|
# Runs: on notable (eg, not just doc files) push to master.
|
2020-03-06 21:54:00 +03:00
|
|
|
|
2020-03-08 01:33:05 +03:00
|
|
|
name: push CI
|
2020-03-06 21:54:00 +03:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ master ]
|
|
|
|
paths:
|
2020-03-08 01:35:58 +03:00
|
|
|
- '.github/workflows/push.yml'
|
2020-03-12 18:15:32 +03:00
|
|
|
- 'stack*.yaml'
|
|
|
|
- 'hledger-lib/**'
|
|
|
|
- 'hledger/**'
|
|
|
|
- 'hledger-ui/**'
|
|
|
|
- 'hledger-web/**'
|
|
|
|
- 'tests/**'
|
2020-03-06 21:54:00 +03:00
|
|
|
- '!**.md'
|
|
|
|
- '!**.1'
|
|
|
|
- '!**.5'
|
|
|
|
- '!**.info'
|
|
|
|
- '!**.txt'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2020-03-07 00:54:32 +03:00
|
|
|
runs-on: ubuntu-latest
|
2020-03-06 21:54:00 +03:00
|
|
|
steps:
|
|
|
|
|
2020-03-08 01:33:05 +03:00
|
|
|
- name: Check out
|
|
|
|
uses: actions/checkout@v2
|
2020-04-21 04:19:33 +03:00
|
|
|
# Fetch all history, rather than a shallow clone, so that we
|
|
|
|
# can restore timestamps (see below).
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
# Restore timestamps to help stack not rebuild unchanged files.
|
|
|
|
# https://stackoverflow.com/questions/60906336
|
|
|
|
# https://stackoverflow.com/a/36243002/84401
|
|
|
|
# https://www.reddit.com/r/haskell/comments/g00ldn/haskell_stack_on_github_actions/
|
|
|
|
- name: Restore source file timestamps
|
|
|
|
run: |
|
|
|
|
git ls-tree -r --name-only HEAD | while read filename; do
|
|
|
|
TS="$(git log -1 --format="%ct" -- ${filename})"
|
|
|
|
touch "${filename}" -mt "$(date --date="@$TS" "+%Y%m%d%H%M.%S")"
|
|
|
|
done
|
2020-03-08 01:33:05 +03:00
|
|
|
|
2020-06-06 23:49:58 +03:00
|
|
|
# things to be cached/restored:
|
2020-03-08 01:33:05 +03:00
|
|
|
|
|
|
|
- name: Cache stack global package db
|
|
|
|
id: stack-global
|
2020-05-30 04:04:52 +03:00
|
|
|
uses: actions/cache@v2
|
2020-03-06 21:54:00 +03:00
|
|
|
with:
|
|
|
|
path: ~/.stack
|
2020-06-06 23:49:58 +03:00
|
|
|
key: ${{ runner.os }}-stack-global-${{ hashFiles('**.yaml') }}
|
2020-03-08 01:33:05 +03:00
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-stack-global
|
|
|
|
${{ runner.os }}-stack
|
2020-03-06 21:54:00 +03:00
|
|
|
|
2020-03-08 01:33:05 +03:00
|
|
|
- name: Cache stack-installed programs in ~/.local/bin
|
|
|
|
id: stack-programs
|
2020-05-30 04:04:52 +03:00
|
|
|
uses: actions/cache@v2
|
2020-03-06 21:54:00 +03:00
|
|
|
with:
|
|
|
|
path: ~/.local/bin
|
2020-06-06 23:49:58 +03:00
|
|
|
key: ${{ runner.os }}-stack-programs-${{ hashFiles('**.yaml') }}
|
2020-03-08 01:33:05 +03:00
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-stack-programs
|
|
|
|
${{ runner.os }}-local-bin
|
2020-03-06 21:54:00 +03:00
|
|
|
|
|
|
|
- name: Cache .stack-work
|
2020-05-30 04:04:52 +03:00
|
|
|
uses: actions/cache@v2
|
2020-03-06 21:54:00 +03:00
|
|
|
with:
|
|
|
|
path: .stack-work
|
2020-03-08 01:33:05 +03:00
|
|
|
key: ${{ runner.os }}-stack-work-${{ hashFiles('**.yaml') }}
|
|
|
|
restore-keys: ${{ runner.os }}-stack-work
|
2020-03-06 21:54:00 +03:00
|
|
|
|
|
|
|
- name: Cache hledger-lib/.stack-work
|
2020-05-30 04:04:52 +03:00
|
|
|
uses: actions/cache@v2
|
2020-03-06 21:54:00 +03:00
|
|
|
with:
|
|
|
|
path: hledger-lib/.stack-work
|
2020-03-08 01:33:05 +03:00
|
|
|
key: ${{ runner.os }}-hledger-lib-stack-work-${{ hashFiles('hledger-lib/package.yaml') }}
|
|
|
|
restore-keys: ${{ runner.os }}-hledger-lib-stack-work
|
2020-03-06 21:54:00 +03:00
|
|
|
|
|
|
|
- name: Cache hledger/.stack-work
|
2020-05-30 04:04:52 +03:00
|
|
|
uses: actions/cache@v2
|
2020-03-06 21:54:00 +03:00
|
|
|
with:
|
|
|
|
path: hledger/.stack-work
|
2020-03-08 01:33:05 +03:00
|
|
|
key: ${{ runner.os }}-hledger-stack-work-${{ hashFiles('hledger/package.yaml') }}
|
|
|
|
restore-keys: ${{ runner.os }}-hledger-stack-work
|
2020-03-06 21:54:00 +03:00
|
|
|
|
|
|
|
- name: Cache hledger-ui/.stack-work
|
2020-05-30 04:04:52 +03:00
|
|
|
uses: actions/cache@v2
|
2020-03-06 21:54:00 +03:00
|
|
|
with:
|
|
|
|
path: hledger-ui/.stack-work
|
2020-03-08 01:33:05 +03:00
|
|
|
key: ${{ runner.os }}-hledger-ui-stack-work-${{ hashFiles('hledger-ui/package.yaml') }}
|
|
|
|
restore-keys: ${{ runner.os }}-hledger-ui-stack-work
|
2020-03-06 21:54:00 +03:00
|
|
|
|
|
|
|
- name: Cache hledger-web/.stack-work
|
2020-05-30 04:04:52 +03:00
|
|
|
uses: actions/cache@v2
|
2020-03-06 21:54:00 +03:00
|
|
|
with:
|
|
|
|
path: hledger-web/.stack-work
|
2020-03-08 01:33:05 +03:00
|
|
|
key: ${{ runner.os }}-hledger-web-stack-work-${{ hashFiles('hledger-web/package.yaml') }}
|
|
|
|
restore-keys: ${{ runner.os }}-hledger-web-stack-work
|
2020-03-06 21:54:00 +03:00
|
|
|
|
2020-06-06 23:49:58 +03:00
|
|
|
# actions:
|
2020-03-06 21:54:00 +03:00
|
|
|
|
|
|
|
- name: Install stack
|
2020-03-07 00:54:32 +03:00
|
|
|
# curl -L https://get.haskellstack.org/stable/linux-x86_64.tar.gz | tar xz --wildcards --strip-components=1 -C $INSTALLDIR '*/stack'
|
|
|
|
# mkdir -p ~/.local/bin
|
|
|
|
# export PATH=~/.local/bin:$PATH
|
|
|
|
# if [[ ! -x ~/.local/bin/stack ]]; then curl -L https://www.stackage.org/stack/linux-x86_64 | tar xz --wildcards --strip-components=1 -C ~/.local/bin '*/stack'; chmod a+x ~/.local/bin/stack; fi
|
2020-03-06 21:54:00 +03:00
|
|
|
run: |
|
|
|
|
stack --version
|
|
|
|
|
|
|
|
- name: Install GHC
|
|
|
|
run: |
|
2020-03-08 01:33:05 +03:00
|
|
|
stack setup --install-ghc
|
2020-03-06 21:54:00 +03:00
|
|
|
|
|
|
|
- name: Install haskell deps
|
|
|
|
run: |
|
2020-03-08 01:33:05 +03:00
|
|
|
stack build --only-dependencies
|
2020-03-06 21:54:00 +03:00
|
|
|
|
2020-03-07 00:54:32 +03:00
|
|
|
- name: Build hledger fast
|
2020-03-06 21:54:00 +03:00
|
|
|
run: |
|
2020-03-08 01:53:12 +03:00
|
|
|
stack build --fast --ghc-options=-Werror
|
|
|
|
# --pedantic
|
2020-03-06 21:54:00 +03:00
|
|
|
|
2020-03-08 01:33:05 +03:00
|
|
|
- name: Install shelltestrunner
|
2020-03-07 00:54:32 +03:00
|
|
|
run: |
|
|
|
|
export PATH=~/.local/bin:$PATH
|
2020-03-08 01:33:05 +03:00
|
|
|
if [[ ! -x ~/.local/bin/shelltest ]]; then stack install shelltestrunner-1.9; fi
|
|
|
|
shelltest --version
|
2020-03-07 00:54:32 +03:00
|
|
|
|
2020-03-08 01:33:05 +03:00
|
|
|
- name: Test functional tests (excluding addons)
|
|
|
|
run: |
|
2020-03-16 20:34:36 +03:00
|
|
|
export PATH=~/.local/bin:$PATH
|
2020-03-08 01:33:05 +03:00
|
|
|
COLUMNS=80 stack exec -- shelltest --execdir -j16 tests -x /bin -x /addons
|