Skip to content

Commit 55ab43f

Browse files
committed
Support ghc-8.10.1
1 parent a7e877b commit 55ab43f

File tree

2 files changed

+36
-23
lines changed

2 files changed

+36
-23
lines changed

.circleci/config.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,12 +73,24 @@ workflows:
7373
cabal-build-extra: --write-ghc-environment-files=ghc8.4.4+
7474
cabal-test-extra: --test-show-details=direct
7575

76+
- haskell/build-with-binary-cache:
77+
name: GHC 8.10.1
78+
executor:
79+
name: cabal-build
80+
ghc-version: 8.10.1
81+
before-build: [build-librdkafka]
82+
context: haskell-ci
83+
binary-cache-uri: ${BINARY_CACHE_URI-"http://hw-binary-cache-us-west-2-a.s3-website-us-west-2.amazonaws.com/archive"}
84+
cabal-build-extra: --write-ghc-environment-files=ghc8.4.4+
85+
cabal-test-extra: --test-show-details=direct
86+
7687
- merge-point/merge-point:
7788
name: Build Ok
7889
requires:
7990
- GHC 8.4.4
8091
- GHC 8.6.5
8192
- GHC 8.8.3
93+
- GHC 8.10.1
8294

8395
- github/release-cabal:
8496
name: GitHub Release

hw-kafka-client.cabal

Lines changed: 24 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,27 @@
1-
name: hw-kafka-client
2-
version: 3.0.0
3-
synopsis: Kafka bindings for Haskell
4-
description: Apache Kafka bindings backed by the librdkafka C library.
5-
.
6-
Features include:
7-
.
8-
* Consumer groups: auto-rebalancing consumers
9-
.
10-
* Keyed and keyless messages producing/consuming
11-
.
12-
* Batch producing messages
13-
category: Database
14-
homepage: https://github.com/haskell-works/hw-kafka-client
15-
bug-reports: https://github.com/haskell-works/hw-kafka-client/issues
16-
author: Alexey Raga <[email protected]>
17-
maintainer: Alexey Raga <[email protected]>
18-
license: MIT
19-
license-file: LICENSE
20-
build-type: Simple
21-
cabal-version: >= 1.10
22-
extra-source-files:
23-
README.md
1+
cabal-version: 2.2
2+
3+
name: hw-kafka-client
4+
version: 3.0.0
5+
synopsis: Kafka bindings for Haskell
6+
description: Apache Kafka bindings backed by the librdkafka C library.
7+
.
8+
Features include:
9+
.
10+
* Consumer groups: auto-rebalancing consumers
11+
.
12+
* Keyed and keyless messages producing/consuming
13+
.
14+
* Batch producing messages
15+
category: Database
16+
homepage: https://github.com/haskell-works/hw-kafka-client
17+
bug-reports: https://github.com/haskell-works/hw-kafka-client/issues
18+
author: Alexey Raga <[email protected]>
19+
maintainer: Alexey Raga <[email protected]>
20+
license: MIT
21+
license-file: LICENSE
22+
tested-with: GHC == 8.10.1, GHC == 8.8.3, GHC == 8.6.5, GHC == 8.4.4
23+
build-type: Simple
24+
extra-source-files: README.md
2425

2526
source-repository head
2627
type: git

0 commit comments

Comments
 (0)