-
Notifications
You must be signed in to change notification settings - Fork 0
137 lines (137 loc) · 5.61 KB
/
stack.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
######################################################
## ##
## !!!! Autogenerated YAML file, do not edit !!!! ##
## ##
## Edit source in /src/github/workflows/ instead! ##
## ##
######################################################
jobs:
auto-cancel:
if: |
!contains(github.event.head_commit.message, '[skip ci]')
&& !contains(github.event.head_commit.message, '[ci skip]')
&& !contains(github.event.head_commit.message, '[github skip]')
&& !contains(github.event.head_commit.message, '[skip github]')
runs-on: Ubuntu-latest
steps:
- uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
stack:
defaults:
run:
shell: bash
env:
EXTRA_ARGS: --fast
ICU_URL: https://repo.msys2.org/mingw/mingw64/mingw-w64-x86_64-icu-69.1-1-any.pkg.tar.zst
NON_DEFAULT_FLAGS: --flag Agda:enable-cluster-counting --flag Agda:debug
needs: auto-cancel
runs-on: ${{ matrix.os }}
steps:
- if: ${{ runner.os == 'macOS' }}
name: Set up for the ICU library (macOS)
run: |
ICU4C=$(brew --prefix)/opt/icu4c
echo "PKG_CONFIG_PATH=${ICU4C}/lib/pkgconfig" >> "${GITHUB_ENV}"
- uses: actions/checkout@v4
- id: haskell-setup
uses: haskell-actions/setup@v2
with:
cabal-update: false
enable-stack: true
ghc-version: ${{ matrix.ghc-ver }}
stack-version: latest
- name: Environment settings based on the Haskell setup
run: |
echo "runner.os = ${{ runner.os }}"
echo "OSTYPE = ${{ env.OSTYPE }}"
echo "ghc-path = ${{ steps.haskell-setup.outputs.ghc-path }}"
echo "ghc-exe = ${{ steps.haskell-setup.outputs.ghc-exe }}"
echo "cabal-path = ${{ steps.haskell-setup.outputs.cabal-path }}"
echo "cabal-exe = ${{ steps.haskell-setup.outputs.cabal-exe }}"
echo "cabal-store = ${{ steps.haskell-setup.outputs.cabal-store }}"
echo "stack-path = ${{ steps.haskell-setup.outputs.stack-path }}"
echo "stack-exe = ${{ steps.haskell-setup.outputs.stack-exe }}"
echo "stack-root = ${{ steps.haskell-setup.outputs.stack-root }}"
echo "STACK_ROOT (orig) = ${{ env.STACK_ROOT }}"
echo "STACK_ROOT=${{ steps.haskell-setup.outputs.stack-root }}" >> "${GITHUB_ENV}"
echo "STACK_VER=$(stack --numeric-version)" >> "${GITHUB_ENV}"
GHC_VER=$(ghc --numeric-version)
echo "GHC_VER=${GHC_VER}" >> "${GITHUB_ENV}"
echo "ARGS=--stack-yaml=stack-${GHC_VER}.yaml --system-ghc --no-terminal" >> "${GITHUB_ENV}"
- if: ${{ runner.os == 'Windows' }}
name: Install the icu library (Windows)
run: |
# stack exec ${ARGS} -- pacman --noconfirm -Syuu
stack exec ${ARGS} -- pacman --noconfirm -Sy msys2-keyring
stack exec ${ARGS} -- bash -c "curl -LO ${ICU_URL} && pacman --noconfirm -U *.pkg.tar.zst"
stack exec ${ARGS} -- pacman --noconfirm -S mingw-w64-x86_64-pkg-config
- name: Determine the ICU version
run: |
ICU_VER=$(stack exec ${ARGS} -- pkg-config --modversion icu-i18n)
echo "ICU_VER=${ICU_VER}"
echo "ICU_VER=${ICU_VER}" >> "${GITHUB_ENV}"
- name: Environment (review)
run: |
echo "STACK_ROOT (fix) = ${STACK_ROOT}"
echo "STACK_VER = ${STACK_VER}"
echo "GHC_VER = ${GHC_VER}"
echo "ICU_VER = ${ICU_VER}"
- id: cache
name: Restore cache from approximate key
uses: actions/cache/restore@v3
with:
key: stack.yml-${{ runner.os }}-ghc-${{ env.GHC_VER }}-stack-${{ env.STACK_VER
}}-icu-${{ env.ICU_VER }}-plan-${{ hashFiles('Agda.cabal', format('stack-{0}.yaml',
env.GHC_VER)) }}
path: |
${{ env.STACK_ROOT }}
restore-keys: stack.yml-${{ runner.os }}-ghc-${{ env.GHC_VER }}-stack-${{
env.STACK_VER }}-icu-${{ env.ICU_VER }}-
- name: Install dependencies for Agda and `agda-tests` (i.e. the test suite).
run: stack build ${ARGS} ${EXTRA_ARGS} ${NON_DEFAULT_FLAGS} --test --only-dependencies
- name: Build Agda with the default flags in Agda.cabal. Also build `agda-tests`
(i.e. the test suite).
run: stack build ${ARGS} ${EXTRA_ARGS} --test --no-run-tests
- name: Build Agda with the non-default flags Agda.cabal.
run: stack build ${ARGS} ${EXTRA_ARGS} ${NON_DEFAULT_FLAGS}
- if: always() && steps.cache.outputs.cache-matched-key != steps.cache.outputs.cache-primary-key
name: Save cache
uses: actions/cache/save@v3
with:
key: ${{ steps.cache.outputs.cache-primary-key }}
path: |
${{ env.STACK_ROOT }}
strategy:
fail-fast: false
matrix:
ghc-ver:
- 9.6.2
include:
- ghc-ver: 9.6.2
os: windows-2022
os:
- ubuntu-22.04
- macos-12
timeout-minutes: 60
name: Build (stack)
'on':
pull_request:
paths:
- .github/workflows/stack.yml
- Agda.cabal
- Setup.hs
- stack-9.6.2.yaml
- src/size-solver/size-solver.cabal
push:
branches:
- master
- ci-*
- release*
paths:
- .github/workflows/stack.yml
- Agda.cabal
- Setup.hs
- stack-9.6.2.yaml
- src/size-solver/size-solver.cabal
workflow_dispatch: null