-
Notifications
You must be signed in to change notification settings - Fork 25
181 lines (176 loc) · 6.89 KB
/
ci.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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
name: CI
# Trigger the workflow on push or pull request, but only for the master branch
on:
pull_request:
push:
branches: [master]
defaults:
run:
shell: bash
jobs:
cabal:
name: ${{ matrix.os }} / ghc ${{ matrix.ghc }} [${{ matrix.random }}]
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
## -- Linux --
- { cabal: "3.12", os: ubuntu-latest, ghc: "8.0.2", random: "1.2" }
- { cabal: "3.12", os: ubuntu-latest, ghc: "8.2.2", random: "1.2" }
- { cabal: "3.12", os: ubuntu-latest, ghc: "8.4.4", random: "1.2" }
- { cabal: "3.12", os: ubuntu-latest, ghc: "8.6.5", random: "1.2" }
- { cabal: "3.12", os: ubuntu-latest, ghc: "8.8.4", random: "1.2" }
- { cabal: "3.12", os: ubuntu-latest, ghc: "8.10.7", random: "1.2" }
- { cabal: "3.12", os: ubuntu-latest, ghc: "9.0.2", random: "1.2" }
- { cabal: "3.12", os: ubuntu-latest, ghc: "9.2.8", random: "1.2" }
- { cabal: "3.12", os: ubuntu-latest, ghc: "9.4.8", random: "1.2" }
- { cabal: "3.12", os: ubuntu-latest, ghc: "9.6.6", random: "1.2" }
- { cabal: "3.12", os: ubuntu-latest, ghc: "9.8.4", random: "1.2" }
- { cabal: "3.12", os: ubuntu-latest, ghc: "9.10.1", random: "1.2" }
- { cabal: "3.12", os: ubuntu-latest, ghc: "9.12.1", random: "1.2" }
- { cabal: "3.12", os: ubuntu-latest, ghc: "8.0.2", random: "1.3" }
- { cabal: "3.12", os: ubuntu-latest, ghc: "8.2.2", random: "1.3" }
- { cabal: "3.12", os: ubuntu-latest, ghc: "8.4.4", random: "1.3" }
- { cabal: "3.12", os: ubuntu-latest, ghc: "8.6.5", random: "1.3" }
- { cabal: "3.12", os: ubuntu-latest, ghc: "8.8.4", random: "1.3" }
- { cabal: "3.12", os: ubuntu-latest, ghc: "8.10.7", random: "1.3" }
- { cabal: "3.12", os: ubuntu-latest, ghc: "9.0.2", random: "1.3" }
- { cabal: "3.12", os: ubuntu-latest, ghc: "9.2.8", random: "1.3" }
- { cabal: "3.12", os: ubuntu-latest, ghc: "9.4.8", random: "1.3" }
- { cabal: "3.12", os: ubuntu-latest, ghc: "9.6.6", random: "1.3" }
- { cabal: "3.12", os: ubuntu-latest, ghc: "9.8.4", random: "1.3" }
- { cabal: "3.12", os: ubuntu-latest, ghc: "9.10.1", random: "1.3" }
- { cabal: "3.12", os: ubuntu-latest, ghc: "9.12.1", random: "1.3" }
## -- Win --
- { cabal: "3.12", os: windows-latest, ghc: "8.4.4" }
- { cabal: "3.12", os: windows-latest, ghc: "8.6.5" }
- { cabal: "3.12", os: windows-latest, ghc: "8.8.4" }
- { cabal: "3.12", os: windows-latest, ghc: "8.10.7" }
- { cabal: "3.12", os: windows-latest, ghc: "9.0.2" }
- { cabal: "3.12", os: windows-latest, ghc: "9.2.8" }
- { cabal: "3.12", os: windows-latest, ghc: "9.4.8" }
- { cabal: "3.12", os: windows-latest, ghc: "9.6.6" }
- { cabal: "3.12", os: windows-latest, ghc: "9.8.4" }
- { cabal: "3.12", os: windows-latest, ghc: "9.10.1" }
- { cabal: "3.12", os: windows-latest, ghc: "9.12.1" }
# MacOS
- { cabal: "3.12", os: macOS-13, ghc: "8.4.4" }
- { cabal: "3.12", os: macOS-13, ghc: "8.6.5" }
- { cabal: "3.12", os: macOS-13, ghc: "8.8.4" }
- { cabal: "3.12", os: macOS-13, ghc: "8.10.7" }
- { cabal: "3.12", os: macOS-13, ghc: "9.0.2" }
- { cabal: "3.12", os: macOS-latest, ghc: "9.2.8" }
- { cabal: "3.12", os: macOS-latest, ghc: "9.4.8" }
- { cabal: "3.12", os: macOS-latest, ghc: "9.6.6" }
- { cabal: "3.12", os: macOS-latest, ghc: "9.8.4" }
- { cabal: "3.12", os: macOS-latest, ghc: "9.10.1" }
- { cabal: "3.12", os: macOS-latest, ghc: "9.12.1" }
fail-fast: false
steps:
# ----------------
- name: "Dummy"
run: |
echo "Cabal " ${{ matrix.cabal }}
echo "OS " ${{ matrix.os }}
echo "GHC " ${{ matrix.ghc }}
echo "random" ${{ matrix.random }}
# ----------------
- uses: actions/checkout@v4
# ----------------
- uses: haskell-actions/setup@v2
id: setup-haskell-cabal
name: Setup Haskell
with:
ghc-version: ${{ matrix.ghc }}
cabal-version: ${{ matrix.cabal }}
# ----------------
- uses: actions/cache@v3
name: Cache ~/.cabal/store
with:
path: ${{ steps.setup-haskell-cabal.outputs.cabal-store }}
key: ${{ runner.os }}-${{ matrix.ghc }}--${{ github.Shah }}
# ----------------
- name: "Install PAPI"
run: |
sudo apt-get install -y libpapi-dev
echo FLAG_PAPI=-fBenchPAPI >> "$GITHUB_ENV"
if: matrix.os == 'ubuntu-latest'
# ----------------
- name: Versions
run: |
cabal -V
ghc -V
# ----------------
- name: Make sdist
run: |
mkdir sdist
cabal sdist -o sdist
# ----------------
- name: Unpack
run: |
mkdir unpacked
tar -C unpacked -xzf sdist/mwc-random*tar.gz
ls unpacked
# ----------------
- name: Configure
working-directory: ./unpacked
run: |
pwd
ls
echo "packages: mwc-random*/mwc-random.cabal" > cabal.project
#--
if [ "${{ matrix.skip-test }}" == "" ]; then
echo "tests: True" >> cabal.project
else
echo "tests: False" >> cabal.project
fi
#--
if [ "${{ matrix.skip-bench }}" == "" ]; then
echo "benchmarks: True" >> cabal.project
echo "benchmark-options: -l" >> cabal.project
else
echo "benchmarks: False" >> cabal.project
fi
#--
if [ ${{ matrix.random }} == "1.2" ]; then
echo "constraints: random >=1.2 && <1.3" >> cabal.project
elif [ ${{ matrix.random }} == "1.3" ]; then
echo "constraints: random >=1.3 && <1.4" >> cabal.project
echo "allow-newer: QuickCheck-2.15.0.1:random" >> cabal.project
fi
#
cabal configure $FLAG_PAPI
cabal freeze
cat cabal.project
echo ========================================
cat cabal.project.freeze
# ----------------
- name: cabal check
working-directory: ./unpacked
run: |
pwd
for nm in mwc-random-*; do
if [ -d "$nm" ]; then
cd "$nm"
cabal -vnormal check
cd ..
fi
done
# ----------------
- name: Build
working-directory: ./unpacked
run: |
pwd
cabal build all --write-ghc-environment-files=always
# ----------------
- name: Test
working-directory: ./unpacked
run: |
pwd
cabal test all
# ----------------
- name: Bench
working-directory: ./unpacked
run: |
pwd
cabal bench all