Skip to content

Commit 1088e3c

Browse files
authored
fixing the MacOS build (#2586)
* no-op change just to test the build * wip add explicit homebrew command for libsodium * wip * Revert "wip add explicit homebrew command for libsodium" This reverts commit ada55e1. * wip * bump ci * change a to b * Revert "change a to b" This reverts commit ab71435. * reinstall libsodium * Revert "Revert "change a to b"" This reverts commit 81631fc. * remove libsodium override as it does not work * wip * wip * use macos-14-large * remove hnix override * wip * wip * use macos-14-latest * use macos-13 * respond to comments from mmhut * try with macos-latest once again * revert dummy change * add macos-13
1 parent e281834 commit 1088e3c

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/main.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ jobs:
1313
archive-command: 'tar --create --bzip2 --file'
1414
file-extension: 'tar.bz2'
1515
executable-extension: ''
16+
- runner: 'macos-13'
17+
archive-command: 'tar --create --bzip2 --file'
18+
file-extension: 'tar.bz2'
19+
executable-extension: ''
1620
- runner: 'ubuntu-latest'
1721
archive-command: 'tar --create --bzip2 --file'
1822
file-extension: 'tar.bz2'
@@ -37,7 +41,7 @@ jobs:
3741
submodules: true
3842
- id: setup-haskell-cabal
3943
name: "Setup Haskell environment"
40-
uses: haskell-actions/setup@v2.5
44+
uses: haskell-actions/setup@v2.7
4145
with:
4246
enable-stack: true
4347
stack-version: "latest"

dhall/src/Dhall/Eval.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ instance Semigroup (VChunks a) where
122122
VChunks xys z <> VChunks [] z' = VChunks xys (z <> z')
123123
VChunks xys z <> VChunks ((x', y'):xys') z' = VChunks (xys ++ (z <> x', y'):xys') z'
124124

125-
instance Monoid (VChunks a) where
125+
instance Monoid (VChunks b) where
126126
mempty = VChunks [] mempty
127127

128128
{-| Some information is lost when `eval` converts a `Lam` or a built-in function

0 commit comments

Comments
 (0)