Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
108 changes: 108 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,108 @@
name: ci

on:
pull_request:
push:
workflow_dispatch:

jobs:
cabal:
name: ${{ matrix.os }} / ghc ${{ matrix.ghc }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macOS-latest]
ghc:
- "8.10.7"
- "9.0.2"
- "9.2.8"
- "9.4.8"
- "9.6.7"
- "9.8.4"
- "9.10.2"
- "9.12.2"
exclude:
# These don't work on GitHub CI anymore because they need llvm@13, which became
# disabled on 12/31/2024
- os: macOS-latest
ghc: 8.10.7
- os: macOS-latest
ghc: 9.0.2

steps:
- uses: actions/checkout@v4

- uses: haskell-actions/setup@v2
id: setup-haskell-cabal
name: Setup Haskell
with:
ghc-version: ${{ matrix.ghc }}
cabal-version: "latest"

- name: Freeze
run: |
cabal freeze

- uses: actions/cache@v4
name: Cache ~/.cabal/store
with:
path: ${{ steps.setup-haskell-cabal.outputs.cabal-store }}
key: ${{ runner.os }}-${{ matrix.ghc }}-${{ hashFiles('cabal.project.freeze') }}

- name: Build
run: |
cabal configure --enable-tests --enable-benchmarks --test-show-details=direct
cabal build all

# - name: Test
# run: |
# cabal test all

stack:
name: stack / ghc ${{ matrix.ghc }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- ghc: "8.10.7"
resolver: lts-18.28
- ghc: "9.0.2"
resolver: lts-19.33
- ghc: "9.2.8"
resolver: lts-20.26
- ghc: "9.4.8"
resolver: lts-21.25
- ghc: "9.6.7"
resolver: lts-22.44
- ghc: "9.8.4"
resolver: lts-23.24
- ghc: "9.10.2"
resolver: nightly-2025-05-26
# - ghc: "9.12.2"
# resolver:

steps:
- uses: actions/checkout@v4

- uses: haskell-actions/setup@v2
name: Setup Haskell Stack
with:
ghc-version: ${{ matrix.ghc }}
enable-stack: true
stack-version: "latest"

- uses: actions/cache@v4
name: Cache ~/.stack
with:
path: ~/.stack
key: ${{ runner.os }}-${{ matrix.ghc }}-${{ matrix.resolver }}

- name: Build
run: |
stack build --resolver ${{matrix.resolver}} --system-ghc --test --bench --no-run-tests --no-run-benchmarks

# - name: Test
# run: |
# stack test --resolver ${{matrix.resolver}} --system-ghc
210 changes: 0 additions & 210 deletions .github/workflows/haskell-ci.yml

This file was deleted.

1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,4 @@ cabal.config
*.prof
*.aux
*.hp
.stack-work
17 changes: 10 additions & 7 deletions HaskellNet.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,14 @@ Homepage: https://github.com/qnikst/HaskellNet
Cabal-version: 1.22
Build-type: Simple
Tested-with:
GHC ==8.8.4
|| ==8.10.7
GHC ==8.10.7
|| ==9.0.2
|| ==9.2.5
|| ==9.4.4
|| ==9.2.8
|| ==9.4.8
|| ==9.6.7
|| ==9.8.4
|| ==9.10.2
|| ==9.12.2

Extra-Source-Files:
CHANGELOG
Expand Down Expand Up @@ -67,14 +70,14 @@ Library
Network.Mail.Mime

Build-Depends:
base >= 4.3 && < 4.19,
base >= 4.3 && < 4.22,
network >= 2.6.3.1 && < 3.3,
mtl >= 2.2.2 && < 2.4,
bytestring >=0.10.2 && < 0.12,
bytestring >=0.10.2 && < 0.13,
pretty >= 1.1.3 && < 1.2,
array >= 0.5 && < 0.6,
cryptohash-md5 >= 0.11 && < 0.12,
base64 < 0.5,
base64 < 1.1,
old-time >= 1.0 && < 1.2,
mime-mail >= 0.4 && < 0.6,
text >= 1.0 && < 3
Expand Down
7 changes: 1 addition & 6 deletions src/Network/HaskellNet/Auth.hs
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,7 @@ b64Encode = T.unpack . encode . T.pack

b64Decode :: String -> String
b64Decode = T.unpack . decode . T.pack
where decode =
#if MIN_VERSION_base64(0,5,0)
B64.decodeBase64Lenient . B64.assertBase64
#else
B64.decodeBase64Lenient
#endif
where decode = B64.decodeBase64Lenient

showOctet :: [Word8] -> String
showOctet = concatMap hexChars
Expand Down
Loading
Loading