update appveyor config
got build caching working on windows (The STACK_ROOT may be unncessary, or may be working around some kind of bug that prevented build caching from working) sped up build by disabling optimisation
This commit is contained in:
parent
e822df2a09
commit
bb5bc17582
1 changed files with 22 additions and 11 deletions
|
@ -50,15 +50,17 @@ environment:
|
||||||
# List a CI run for each platform first, to have immediate access when there
|
# List a CI run for each platform first, to have immediate access when there
|
||||||
# is a need for debugging
|
# is a need for debugging
|
||||||
|
|
||||||
# Ubuntu core tests
|
|
||||||
- ID: Ubu20
|
|
||||||
APPVEYOR_BUILD_WORKER_IMAGE: Ubuntu2004
|
|
||||||
# Windows core tests
|
# Windows core tests
|
||||||
- ID: WinP39core
|
- ID: WinP39core
|
||||||
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
|
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
|
||||||
|
STACK_ROOT: "c:\\sr"
|
||||||
# MacOS core tests
|
# MacOS core tests
|
||||||
- ID: MacP38core
|
- ID: MacP38core
|
||||||
APPVEYOR_BUILD_WORKER_IMAGE: macos-monterey
|
APPVEYOR_BUILD_WORKER_IMAGE: macos-monterey
|
||||||
|
# Ubuntu core tests
|
||||||
|
# (disabled because it's not needed)
|
||||||
|
#- ID: Ubu20
|
||||||
|
# APPVEYOR_BUILD_WORKER_IMAGE: Ubuntu2004
|
||||||
|
|
||||||
# do not run the CI if only documentation changes were made
|
# do not run the CI if only documentation changes were made
|
||||||
# documentation builds are tested elsewhere and cheaper
|
# documentation builds are tested elsewhere and cheaper
|
||||||
|
@ -69,10 +71,9 @@ skip_commits:
|
||||||
|
|
||||||
# it is OK to specify paths that may not exist for a particular test run
|
# it is OK to specify paths that may not exist for a particular test run
|
||||||
cache:
|
cache:
|
||||||
- C:\Users\appveyor\AppData\Roaming\stack
|
- C:\sr -> stack.yaml
|
||||||
- C:\Users\appveyor\AppData\Local\Programs\stack
|
- C:\Users\appveyor\AppData\Local\Programs\stack -> stack.yaml
|
||||||
- /home/appveyor/.stack
|
- /Users/appveyor/.stack -> stack.yaml
|
||||||
- /Users/appveyor/.stack
|
|
||||||
|
|
||||||
# turn of support for MS project build support (not needed)
|
# turn of support for MS project build support (not needed)
|
||||||
build: off
|
build: off
|
||||||
|
@ -96,11 +97,16 @@ install:
|
||||||
# install stack (works on linux, OSX, and windows)
|
# install stack (works on linux, OSX, and windows)
|
||||||
- curl -sSL https://get.haskellstack.org/ | sh
|
- curl -sSL https://get.haskellstack.org/ | sh
|
||||||
|
|
||||||
#before_build:
|
# Building dependencies takes almost too long on windows, so build without
|
||||||
#
|
# optimisation (including when building the dependencies)
|
||||||
|
before_build:
|
||||||
|
- cp stack.yaml stack.yaml.build
|
||||||
|
- sh: 'echo "apply-ghc-options: everything" >> stack.yaml.build'
|
||||||
|
- ps: '"apply-ghc-options: everything" |Add-Content -Path .\stack.yaml.build'
|
||||||
|
- stack --stack-yaml stack.yaml.build build --only-dependencies --ghc-options=-O0
|
||||||
|
|
||||||
build_script:
|
build_script:
|
||||||
- stack build
|
- stack --stack-yaml stack.yaml.build build --copy-bins --ghc-options=-O0
|
||||||
|
|
||||||
#after_build:
|
#after_build:
|
||||||
#
|
#
|
||||||
|
@ -108,8 +114,13 @@ build_script:
|
||||||
#before_test:
|
#before_test:
|
||||||
#
|
#
|
||||||
|
|
||||||
|
# Cannot use stack run git-annex because it does not support --ghc-options
|
||||||
|
# and would rebuild all deps. Instead, use the binary --copy-bins installed.
|
||||||
test_script:
|
test_script:
|
||||||
- stack run git-annex test
|
- cmd: C:\Users\appveyor\AppData\Roaming\local\bin\git-annex.exe test
|
||||||
|
- sh: ln -s $(stack path --local-bin)/git-annex git-annex
|
||||||
|
- sh: ln -s $(stack path --local-bin)/git-annex git-annex-shell
|
||||||
|
- sh: PATH=`pwd`:$PATH; export PATH; git-annex test
|
||||||
|
|
||||||
#after_test:
|
#after_test:
|
||||||
#
|
#
|
||||||
|
|
Loading…
Reference in a new issue