Skip to content

Commit d46bfeb

Browse files
committed
Exclude dhall-nix in GitHub Workflow job for GHC 9.8
1 parent d1cabb5 commit d46bfeb

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/main.yml

+6
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,9 @@ jobs:
8787
dhall-yaml
8888
)
8989
for package in "${packages[@]}"; do
90+
if [ '${{matrix.stack-yaml}}' == 'stack.ghc-9.8.yaml' ] && [ "${package}" == 'dhall-nix' ]; then
91+
continue
92+
fi
9093
if [ '${{matrix.os.runner}}' == 'windows-latest' ] && [ "${package}" == 'dhall-nix' ]; then
9194
continue
9295
fi
@@ -112,6 +115,9 @@ jobs:
112115
dhall-yaml
113116
)
114117
for package in "${packages[@]}"; do
118+
if [ '${{matrix.stack-yaml}}' == 'stack.ghc-9.8.yaml' ] && [ "${package}" == 'dhall-nix' ]; then
119+
continue
120+
fi
115121
if [ '${{matrix.os.runner}}' == 'windows-latest' ] && [ "${package}" == 'dhall-nix' ]; then
116122
continue
117123
fi

0 commit comments

Comments
 (0)