2021-12-02 10:09:21 +03:00
|
|
|
# Runs on any push to ci-windows, and weekly on master.
|
2022-01-05 21:56:17 +03:00
|
|
|
# Produces optimised windows binaries,
|
2022-01-05 22:01:59 +03:00
|
|
|
# using the default stack.yaml's GHC version.
|
2022-01-05 21:56:17 +03:00
|
|
|
# Currently runs no tests.
|
2023-09-12 10:49:04 +03:00
|
|
|
# Currently using nightly-2023-04-24 (ghc-9.4) to avoid ghc 9.4.5/9.6 windows bugs
|
|
|
|
# ( https://gitlab.haskell.org/ghc/ghc/-/issues/23309 , https://gitlab.haskell.org/ghc/ghc/-/issues/23378 )
|
2020-03-06 21:54:00 +03:00
|
|
|
|
2022-06-06 13:58:34 +03:00
|
|
|
name: binaries-windows-x64
|
2020-03-06 21:54:00 +03:00
|
|
|
|
|
|
|
on:
|
2020-03-17 02:30:14 +03:00
|
|
|
schedule:
|
2020-03-18 03:17:41 +03:00
|
|
|
- cron: "0 07 * * 0" # sunday midnight pacific
|
2020-03-06 21:54:00 +03:00
|
|
|
push:
|
2022-08-18 05:19:42 +03:00
|
|
|
branches: [ binaries-windows-x64, binaries ]
|
2021-07-04 03:51:17 +03:00
|
|
|
workflow_dispatch:
|
|
|
|
|
2020-11-17 23:55:13 +03:00
|
|
|
|
2020-03-06 21:54:00 +03:00
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: windows-latest
|
2022-01-06 20:15:02 +03:00
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
shell: bash
|
2020-03-06 21:54:00 +03:00
|
|
|
steps:
|
|
|
|
|
2020-03-07 12:38:10 +03:00
|
|
|
- name: Check out
|
2023-01-27 10:54:56 +03:00
|
|
|
uses: actions/checkout@v3
|
2021-06-04 11:44:46 +03:00
|
|
|
# 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
|
|
|
|
2022-01-06 20:06:57 +03:00
|
|
|
- name: Confirm all remaining steps should run
|
|
|
|
run: echo "CONTINUE=true" >> $GITHUB_ENV
|
|
|
|
|
2020-06-06 23:49:58 +03:00
|
|
|
# things to be cached/restored:
|
2020-03-06 21:54:00 +03:00
|
|
|
|
2020-03-07 14:35:19 +03:00
|
|
|
- name: Cache stack global package db
|
|
|
|
id: stack-global-package-db
|
2023-01-27 10:53:51 +03:00
|
|
|
uses: actions/cache@v3
|
2020-03-07 14:22:44 +03:00
|
|
|
with:
|
|
|
|
path: C:\Users\runneradmin\AppData\Roaming\stack\
|
2020-07-11 18:23:43 +03:00
|
|
|
key: ${{ runner.os }}-appdata-roaming-stack-${{ hashFiles('**.yaml') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-appdata-roaming-stack
|
2021-07-21 12:01:57 +03:00
|
|
|
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
|
2023-01-27 10:53:51 +03:00
|
|
|
uses: actions/cache@v3
|
2020-03-06 21:54:00 +03:00
|
|
|
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
|
2020-07-11 18:23:43 +03:00
|
|
|
key: ${{ runner.os }}-appdata-local-programs-stack-${{ hashFiles('**.yaml') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-appdata-local-programs-stack
|
2021-07-21 12:01:57 +03:00
|
|
|
if: env.CONTINUE
|
2020-03-06 22:41:27 +03:00
|
|
|
|
2020-03-06 21:54:00 +03:00
|
|
|
- name: Cache .stack-work
|
2023-01-27 10:53:51 +03:00
|
|
|
uses: actions/cache@v3
|
2020-03-06 21:54:00 +03:00
|
|
|
with:
|
|
|
|
path: .stack-work
|
2020-07-11 18:23:43 +03:00
|
|
|
key: ${{ runner.os }}-stack-work-${{ hashFiles('**.yaml') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-stack-work
|
2021-07-21 12:01:57 +03:00
|
|
|
if: env.CONTINUE
|
2020-03-06 21:54:00 +03:00
|
|
|
|
|
|
|
- name: Cache hledger-lib/.stack-work
|
2023-01-27 10:53:51 +03:00
|
|
|
uses: actions/cache@v3
|
2020-03-06 21:54:00 +03:00
|
|
|
with:
|
|
|
|
path: hledger-lib/.stack-work
|
2020-07-11 18:23:43 +03:00
|
|
|
key: ${{ runner.os }}-hledger-lib-stack-work-${{ hashFiles('hledger-lib/package.yaml') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-hledger-lib-stack-work
|
2021-07-21 12:01:57 +03:00
|
|
|
if: env.CONTINUE
|
2020-03-06 21:54:00 +03:00
|
|
|
|
|
|
|
- name: Cache hledger/.stack-work
|
2023-01-27 10:53:51 +03:00
|
|
|
uses: actions/cache@v3
|
2020-03-06 21:54:00 +03:00
|
|
|
with:
|
|
|
|
path: hledger/.stack-work
|
2020-07-11 18:23:43 +03:00
|
|
|
key: ${{ runner.os }}-hledger-stack-work-${{ hashFiles('hledger/package.yaml') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-hledger-stack-work
|
2021-07-21 12:01:57 +03:00
|
|
|
if: env.CONTINUE
|
2020-03-06 21:54:00 +03:00
|
|
|
|
|
|
|
- name: Cache hledger-ui/.stack-work
|
2023-01-27 10:53:51 +03:00
|
|
|
uses: actions/cache@v3
|
2020-03-06 21:54:00 +03:00
|
|
|
with:
|
|
|
|
path: hledger-ui/.stack-work
|
2020-07-11 18:23:43 +03:00
|
|
|
key: ${{ runner.os }}-hledger-ui-stack-work-${{ hashFiles('hledger-ui/package.yaml') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-hledger-ui-stack-work
|
2021-07-21 12:01:57 +03:00
|
|
|
if: env.CONTINUE
|
2020-03-06 21:54:00 +03:00
|
|
|
|
|
|
|
- name: Cache hledger-web/.stack-work
|
2023-01-27 10:53:51 +03:00
|
|
|
uses: actions/cache@v3
|
2020-03-06 21:54:00 +03:00
|
|
|
with:
|
|
|
|
path: hledger-web/.stack-work
|
2020-07-11 18:23:43 +03:00
|
|
|
key: ${{ runner.os }}-hledger-web-stack-work-${{ hashFiles('hledger-web/package.yaml') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-hledger-web-stack-work
|
2021-07-21 12:01:57 +03:00
|
|
|
if: env.CONTINUE
|
2020-03-06 21:54:00 +03:00
|
|
|
|
2020-06-06 23:49:58 +03:00
|
|
|
# - name: showStuff
|
|
|
|
# run: |
|
|
|
|
# ls -lFRa /c/users/runneradmin/appdata/roaming/stack
|
|
|
|
# ls -lFRa /c/users/runneradmin/appdata/local/programs/stack
|
|
|
|
|
|
|
|
# actions:
|
2020-03-06 21:54:00 +03:00
|
|
|
|
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
|
|
|
|
2020-10-19 08:04:32 +03:00
|
|
|
# - name: Install stack
|
|
|
|
# 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 }}
|
|
|
|
|
2020-03-06 21:54:00 +03:00
|
|
|
- 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
|
2020-03-06 21:54:00 +03:00
|
|
|
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
|
2020-10-19 08:04:32 +03:00
|
|
|
which stack
|
2020-10-19 08:45:25 +03:00
|
|
|
stack --version
|
2020-10-19 08:55:42 +03:00
|
|
|
which ./stack
|
|
|
|
./stack --version
|
2021-07-21 12:01:57 +03:00
|
|
|
if: env.CONTINUE
|
2020-03-06 21:54:00 +03:00
|
|
|
|
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: |
|
2023-05-10 23:03:51 +03:00
|
|
|
./stack --no-terminal setup --install-ghc --resolver nightly-2023-04-24
|
2021-07-21 12:01:57 +03:00
|
|
|
if: env.CONTINUE
|
2020-03-06 22:24:26 +03:00
|
|
|
|
2020-03-06 21:54:00 +03:00
|
|
|
# - name: Install shelltestrunner
|
2020-03-16 20:34:36 +03:00
|
|
|
## - export PATH=~/.local/bin:$PATH
|
2020-03-06 21:54:00 +03:00
|
|
|
# - if [[ ! -x ~/.local/bin/shelltest ]]; then stack install shelltestrunner-1.9; fi
|
|
|
|
# - shelltest --version
|
|
|
|
|
|
|
|
- name: Install haskell deps
|
|
|
|
run: |
|
2023-05-10 23:03:51 +03:00
|
|
|
./stack --no-terminal build --only-dependencies --dry-run --resolver nightly-2023-04-24
|
|
|
|
./stack --no-terminal build --only-dependencies --resolver nightly-2023-04-24
|
2021-07-21 12:01:57 +03:00
|
|
|
if: env.CONTINUE
|
2020-03-06 21:54:00 +03:00
|
|
|
|
2021-06-29 22:53:17 +03:00
|
|
|
# use whichever GHC is in default stack.yaml
|
|
|
|
|
2020-06-22 03:50:03 +03:00
|
|
|
- name: Build all hledger modules warning free, optimised and minimised
|
2020-03-07 14:22:44 +03:00
|
|
|
run: |
|
2023-05-10 23:03:51 +03:00
|
|
|
./stack --no-terminal install --force-dirty --ghc-options=-fforce-recomp --ghc-options=-Werror --resolver nightly-2023-04-24
|
2020-06-22 03:50:03 +03:00
|
|
|
# --ghc-options=-split-sections doesn't work on windows, "too many sections"
|
2020-03-08 01:53:12 +03:00
|
|
|
# --pedantic
|
2021-07-21 12:01:57 +03:00
|
|
|
if: env.CONTINUE
|
2020-03-06 21:54:00 +03:00
|
|
|
|
|
|
|
# run hledger-lib/hledger functional tests, skipping the ones for addons
|
2020-03-16 20:34:36 +03:00
|
|
|
## - export PATH=~/.local/bin:$PATH
|
2022-12-22 22:15:06 +03:00
|
|
|
#- COLUMNS=80 stack exec -- shelltest --execdir -j16 hledger/test -x /_ -x /addons -x ledger-compat/baseline -x ledger-compat/regress -x ledger-compat/collected
|
2020-03-06 21:54:00 +03:00
|
|
|
|
2020-06-10 01:27:30 +03:00
|
|
|
# artifacts:
|
2020-04-02 00:14:02 +03:00
|
|
|
|
2022-07-27 00:49:47 +03:00
|
|
|
- name: Gather binaries
|
2020-03-07 07:06:20 +03:00
|
|
|
run: |
|
2020-04-02 00:14:02 +03:00
|
|
|
mkdir tmp
|
|
|
|
cd tmp
|
2022-01-06 20:59:40 +03:00
|
|
|
cp /C/Users/runneradmin/AppData/Roaming/local/bin/hledger.exe .
|
|
|
|
cp /C/Users/runneradmin/AppData/Roaming/local/bin/hledger-web.exe .
|
2022-06-08 17:30:45 +03:00
|
|
|
strip hledger.exe
|
|
|
|
strip hledger-web.exe
|
2021-07-21 12:01:57 +03:00
|
|
|
if: env.CONTINUE
|
2020-03-07 07:24:59 +03:00
|
|
|
|
2022-07-27 00:49:47 +03:00
|
|
|
- name: Create binaries artifact
|
2022-07-27 00:37:44 +03:00
|
|
|
uses: actions/upload-artifact@v3
|
2020-03-07 07:06:20 +03:00
|
|
|
with:
|
2022-05-22 12:41:56 +03:00
|
|
|
name: hledger-windows-x64
|
2022-07-27 01:27:53 +03:00
|
|
|
path: |
|
|
|
|
tmp/hledger.exe
|
|
|
|
tmp/hledger-web.exe
|
2021-07-21 12:01:57 +03:00
|
|
|
if: env.CONTINUE
|