-
Notifications
You must be signed in to change notification settings - Fork 64
executable file
·107 lines (104 loc) · 3.36 KB
/
tests.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
name: Tests
on:
pull_request:
push:
branches:
- master
jobs:
stack:
name: Stack
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- macos-latest
- ubuntu-latest
- windows-latest
versions:
#- <lts version> <ghc version>
- 22.28 9.6.6
- 21.25 9.4.8
- 20.26 9.2.8
- 19.33 9.0.2
- 18.28 8.10.7
steps:
- name: Parse lts and ghc versions
shell: sh
run: |
echo snapshot=$(echo ${{ matrix.versions }} | cut -d ' ' -f 1) >> $GITHUB_ENV
echo ghcVersion=$(echo ${{ matrix.versions }} | cut -d ' ' -f 2) >> $GITHUB_ENV
- name: Install LLVM 13
if: ${{ matrix.os == 'macos-latest' && env.snapshot < 20 }}
shell: sh
run: |
brew install llvm@13
echo "/opt/homebrew/opt/llvm@13/bin" >> $GITHUB_PATH
echo extraLibDirs="--extra-lib-dirs /opt/homebrew/opt/llvm@13/lib" >> $GITHUB_ENV
echo extraIncludeDirsLLVM="--extra-include-dirs /opt/homebrew/opt/llvm@13/include" >> $GITHUB_ENV
echo extraIncludeDirsFFI="--extra-include-dirs /Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk/usr/include/ffi" >> $GITHUB_ENV
- name: Setup Haskell
id: setup-haskell-stack
uses: haskell-actions/[email protected]
with:
ghc-version: ${{ env.ghcVersion }}
enable-stack: true
stack-version: 'latest'
cabal-update: false
- name: Clone project
uses: actions/checkout@v4
- name: Use Cache
uses: actions/cache@v4
with:
key: ${{ matrix.os }}_${{ env.snapshot }}_${{ github.head_ref }}
restore-keys: |
${{ matrix.os }}_${{ env.snapshot }}_${{ github.head_ref }}
${{ matrix.os }}_${{ env.snapshot }}_${{ github.base_ref }}
${{ matrix.os }}_${{ env.snapshot }}_
${{ matrix.os }}_${{ env.snapshot }}
path: |
${{ steps.setup-haskell-stack.outputs.stack-root }}
.stack-work
*/.stack-work
- name: Build and run tests
shell: bash
run: |
set -ex
ghc --version
stack --version
stack test --system-ghc $extraLibDirs $extraIncludeDirsLLVM $extraIncludeDirsFFI --fast --no-terminal --snapshot=lts-$snapshot
Cabal:
name: Cabal
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- macos-latest
- macos-13
- ubuntu-latest
- windows-latest
steps:
- name: Setup Haskell
id: setup-haskell-cabal
uses: haskell-actions/[email protected]
with:
ghc-version: 9.6.6
- name: Clone project
uses: actions/checkout@v4
- name: Use Cache
uses: actions/cache@v4
with:
key: ${{ matrix.os }}_cabal_${{ github.head_ref }}
restore-keys: |
${{ matrix.os }}_cabal_${{ github.head_ref }}
${{ matrix.os }}_cabal_${{ github.base_ref }}
${{ matrix.os }}_cabal_
${{ matrix.os }}_cabal
path: |
${{ steps.setup-haskell-cabal.outputs.cabal-store }}
dist-newstyle
- name: Build and run tests
shell: bash
run: |
ghc --version
cabal --version
cabal test --minimize-conflict-set -O0 all