hledger/.github/workflows/windows.yml

230 lines
7.7 KiB
YAML
Raw Normal View History

# Runs on notable pushes to ci-windows, and weekly on master.
# Builds all modules optimised on windows,
# and uploads a binaries artifact.
name: windows CI
on:
schedule:
- cron: "0 07 * * 0" # sunday midnight pacific
2020-06-07 19:37:53 +03:00
push:
branches: [ ci-windows ]
paths:
- '.github/workflows/windows.yml'
2020-03-12 18:15:32 +03:00
- 'stack*.yaml'
- 'hledger-lib/**'
- 'hledger/**'
- 'hledger-ui/**'
- 'hledger-web/**'
# - 'bin/*.hs'
# ignore changes to example files, though currently some func tests depend on them
- 'examples/**'
- '!**.journal'
- '!**.j'
- '!**.ledger'
- '!**.csv'
# ignore changes to doc source files
- '!**.m4'
- '!**.md'
- '!**.1'
- '!**.5'
- '!**.info'
- '!**.txt'
workflow_dispatch:
jobs:
build:
runs-on: windows-latest
2021-07-21 12:06:34 +03:00
# defaults:
# run:
# shell: bash
steps:
2020-03-07 12:38:10 +03:00
- name: Check out
uses: actions/checkout@v2
# have to fetch everything for git describe for --version
2021-06-04 11:49:39 +03:00
with:
fetch-depth: 0
2021-06-04 11:51:17 +03:00
# keep synced in all workflows which do this
- name: Check commit messages
# For a PR, the range will be: master..origin/$GITHUB_HEAD_REF
# For a push it will be: $BEFORE..
# For a force push, BEFORE is the previous HEAD, and on github (though not locally) this is an "invalid revision range".
# In this and any case where the range is invalid, we'll just skip the check, to avoid false positives
# related: https://stackoverflow.com/questions/64708371/how-to-run-github-workflow-on-every-commit-of-a-push
env:
BEFORE: ${{ github.event.before }}
NUM: 5
2021-07-21 12:06:34 +03:00
shell: bash
run: |
RANGE=${BEFORE:-origin/master}..${GITHUB_HEAD_REF:+origin/$GITHUB_HEAD_REF}
git rev-list --quiet $RANGE \
&& bin/commitlint $RANGE \
|| ( echo "could not identify commits, not checking them" )
# || ( echo "could not identify commits, checking last $NUM instead:"; bin/commitlint -$NUM )
- name: Skip remaining CI steps if latest commit message begins with ;
shell: bash
run: |
echo "git log -1 --pretty='%s' ${GITHUB_HEAD_REF:+origin/$GITHUB_HEAD_REF} >> $$.gitlog"
2021-08-19 10:47:01 +03:00
(git log -1 --pretty='%s' ${GITHUB_HEAD_REF:+origin/$GITHUB_HEAD_REF} >> $$.gitlog \
&& (grep -qE '^ *;' $$.gitlog || echo "CONTINUE=true" >> $GITHUB_ENV)) \
2021-08-19 21:55:44 +03:00
|| ( echo "could not identify commit range, continuing CI steps"; echo "CONTINUE=true" >> $GITHUB_ENV )
2020-06-06 23:49:58 +03:00
# things to be cached/restored:
2020-03-07 14:35:19 +03:00
- name: Cache stack global package db
id: stack-global-package-db
uses: actions/cache@v2
2020-03-07 14:22:44 +03:00
with:
path: C:\Users\runneradmin\AppData\Roaming\stack\
key: ${{ runner.os }}-appdata-roaming-stack-${{ hashFiles('**.yaml') }}
restore-keys: |
${{ runner.os }}-appdata-roaming-stack
if: env.CONTINUE
2020-03-07 14:22:44 +03:00
2020-03-07 14:51:38 +03:00
- name: Cache stack programs dir # ghc, ghc-included packages and their haddocks, mingw, msys2
2020-03-07 14:35:19 +03:00
id: stack-programs-dir
uses: actions/cache@v2
with:
2020-03-06 22:16:13 +03:00
path: C:\Users\runneradmin\AppData\Local\Programs\stack\
2020-03-07 13:50:26 +03:00
# which files signal a change in stack's global db ?
# **.yaml includes */package.yaml and stack.yaml* (too many), and hopefully no other changing yamls
key: ${{ runner.os }}-appdata-local-programs-stack-${{ hashFiles('**.yaml') }}
restore-keys: |
${{ runner.os }}-appdata-local-programs-stack
if: env.CONTINUE
2020-03-06 22:41:27 +03:00
- name: Cache .stack-work
uses: actions/cache@v2
with:
path: .stack-work
key: ${{ runner.os }}-stack-work-${{ hashFiles('**.yaml') }}
restore-keys: |
${{ runner.os }}-stack-work
if: env.CONTINUE
- name: Cache hledger-lib/.stack-work
uses: actions/cache@v2
with:
path: hledger-lib/.stack-work
key: ${{ runner.os }}-hledger-lib-stack-work-${{ hashFiles('hledger-lib/package.yaml') }}
restore-keys: |
${{ runner.os }}-hledger-lib-stack-work
if: env.CONTINUE
- name: Cache hledger/.stack-work
uses: actions/cache@v2
with:
path: hledger/.stack-work
key: ${{ runner.os }}-hledger-stack-work-${{ hashFiles('hledger/package.yaml') }}
restore-keys: |
${{ runner.os }}-hledger-stack-work
if: env.CONTINUE
- name: Cache hledger-ui/.stack-work
uses: actions/cache@v2
with:
path: hledger-ui/.stack-work
key: ${{ runner.os }}-hledger-ui-stack-work-${{ hashFiles('hledger-ui/package.yaml') }}
restore-keys: |
${{ runner.os }}-hledger-ui-stack-work
if: env.CONTINUE
- name: Cache hledger-web/.stack-work
uses: actions/cache@v2
with:
path: hledger-web/.stack-work
key: ${{ runner.os }}-hledger-web-stack-work-${{ hashFiles('hledger-web/package.yaml') }}
restore-keys: |
${{ runner.os }}-hledger-web-stack-work
if: env.CONTINUE
2020-06-06 23:49:58 +03:00
# - name: showStuff
# shell: bash
# run: |
# ls -lFRa /c/users/runneradmin/appdata/roaming/stack
# ls -lFRa /c/users/runneradmin/appdata/local/programs/stack
# actions:
2020-03-07 14:14:54 +03:00
# - name: Add stack local bin to PATH
# run: echo "::add-path::C:\Users\runneradmin\AppData\Roaming\stack\local\bin"
2020-03-07 13:57:59 +03:00
# - name: Install stack
# shell: bash
# run: |
# mkdir -p ~/.local/bin
# export PATH=~/.local/bin:$PATH
# if [[ ! -x ~/.local/bin/stack ]]; then curl -sL https://get.haskellstack.org/stable/linux-x86_64.tar.gz | tar xz --wildcards --strip-components=1 -C ~/.local/bin '*/stack'; chmod a+x ~/.local/bin/stack; fi
# $stack --version
# env:
# stack: ${{ matrix.plan.stack }}
- name: Install stack
2020-03-07 14:40:48 +03:00
#if: steps.stack-programs-dir.outputs.cache-hit != 'true'
# this step is needed to get stack.exe into PATH, for now
run: |
2020-10-19 08:45:25 +03:00
curl -sL https://get.haskellstack.org/stable/windows-x86_64.zip -o stack.zip
2020-10-19 08:18:48 +03:00
7z x stack.zip stack.exe
which stack
2020-10-19 08:45:25 +03:00
stack --version
2020-10-19 08:55:42 +03:00
which ./stack
./stack --version
if: env.CONTINUE
2020-03-06 22:24:26 +03:00
- name: Install GHC
2020-03-07 14:51:38 +03:00
# if: steps.stack-programs-dir.outputs.cache-hit != 'true'
2020-03-07 14:40:48 +03:00
# set PATH=C:\Users\runneradmin\AppData\Local\Programs\stack\local\bin;%PATH%
2020-03-06 22:24:26 +03:00
run: |
./stack --no-terminal setup --install-ghc
if: env.CONTINUE
2020-03-06 22:24:26 +03:00
# - name: Install shelltestrunner
## - export PATH=~/.local/bin:$PATH
# - if [[ ! -x ~/.local/bin/shelltest ]]; then stack install shelltestrunner-1.9; fi
# - shelltest --version
- name: Install haskell deps
run: |
./stack --no-terminal build --only-dependencies
if: env.CONTINUE
2021-06-29 22:53:17 +03:00
# use whichever GHC is in default stack.yaml
- name: Build all hledger modules warning free, optimised and minimised
2020-03-07 14:22:44 +03:00
run: |
./stack --no-terminal install --force-dirty --ghc-options=-fforce-recomp --ghc-options=-Werror
# --ghc-options=-split-sections doesn't work on windows, "too many sections"
2020-03-08 01:53:12 +03:00
# --pedantic
if: env.CONTINUE
# run hledger-lib/hledger functional tests, skipping the ones for addons
## - export PATH=~/.local/bin:$PATH
#- COLUMNS=80 stack exec -- shelltest --execdir -j16 hledger/test -x /_ -x /addons
# artifacts:
- name: Gather executables
run: |
mkdir tmp
cd tmp
mkdir hledger
cd hledger
copy C:\Users\runneradmin\AppData\Roaming\local\bin\hledger.exe .
copy C:\Users\runneradmin\AppData\Roaming\local\bin\hledger-web.exe .
if: env.CONTINUE
# XXX intermittent upload failures
- name: Create executables artifact
2020-06-09 01:24:13 +03:00
uses: actions/upload-artifact@v2
with:
name: hledger-windows
path: tmp/hledger
if: env.CONTINUE