mirror of
https://github.com/reanimate/reanimate.git
synced 2026-09-11 16:12:20 +00:00
azure
Former-commit-id: 994596a906fea84503b960760ed6048913626c0c
This commit is contained in:
parent
5aec5a52c2
commit
52ea8e4067
1 changed files with 8 additions and 2 deletions
|
|
@ -8,6 +8,7 @@ trigger:
|
|||
|
||||
variables:
|
||||
STACK_ROOT: $(Pipeline.Workspace)/.stack
|
||||
STACK_WORK: $(Pipeline.Workspace)/.stack-work
|
||||
|
||||
jobs:
|
||||
#- job: macOS
|
||||
|
|
@ -30,9 +31,14 @@ jobs:
|
|||
# displayName: Cache stack
|
||||
- task: CacheBeta@0
|
||||
inputs:
|
||||
key: ghc | $(Agent.OS) | stack.yaml | version4
|
||||
key: stack-root | $(Agent.OS) | stack.yaml
|
||||
path: $(STACK_ROOT)
|
||||
displayName: Cache ghc
|
||||
displayName: Cache stack root
|
||||
- task: CacheBeta@0
|
||||
inputs:
|
||||
key: stack-work | $(Agent.OS) | stack.yaml
|
||||
path: $(STACK_WORK)
|
||||
displayName: Cache stack work
|
||||
- script: |
|
||||
ghc --version
|
||||
ghc-pkg list
|
||||
|
|
|
|||
Loading…
Reference in a new issue