Skip to content

Commit

Permalink
Merge branch 'ci'
Browse files Browse the repository at this point in the history
  • Loading branch information
kazu-yamamoto committed Mar 15, 2023
2 parents 4d5236b + cca79e7 commit d3adf29
Show file tree
Hide file tree
Showing 4 changed files with 117 additions and 128 deletions.
71 changes: 35 additions & 36 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,55 +1,54 @@
name: Haskell CI

on:
push:
branches:
- master
pull_request: {}
branches: [ 'master', 'ci' ]
pull_request:
branches: [ 'master' ]

jobs:
build:
runs-on: ${{ matrix.os }}

strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
ghc: ['8.0', '8.2', '8.4', '8.6', '8.8', '8.10']
exclude:
- os: windows-latest
ghc: "8.0"
- os: windows-latest
ghc: "8.2"
- os: windows-latest
ghc: "8.4"
os: [ 'ubuntu-latest', 'macOS-latest', 'windows-latest' ]
ghc: [ '8.10', '9.0', '9.2' ]

steps:
- uses: actions/checkout@v3

- uses: haskell/actions/setup@v2
id: setup-haskell-cabal
with:
ghc-version: ${{ matrix.ghc }}
cabal-version: '3.2'
- name: Update cabal package database
run: |
cabal update
cabal freeze
- uses: actions/cache@v3
name: Cache cabal stuff
cabal-version: '3.8'

- name: Cache
uses: actions/cache@v3
env:
cache-name: cache-cabal
with:
path: |
${{ steps.setup-haskell-cabal.outputs.cabal-store }}
dist-newstyle
key: cache-${{ matrix.os }}-${{ matrix.ghc }}-${{ hashFiles('cabal.project.freeze') }}
path: ~/.cabal
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/*.cabal') }}-${{ hashFiles('**/cabal.project') }}
restore-keys: |
cache-${{ matrix.os }}-${{ matrix.ghc }}-
- name: Build
run: |
cabal install hspec-discover
cabal build --disable-tests --disable-benchmarks all
- name: Test
run: |
cabal test
- name: Haddock
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Install dependencies
run: |
cabal haddock
- name: SDist
cabal update
cabal build --only-dependencies --enable-tests --disable-benchmarks
- name: Build
run: cabal build --enable-tests --disable-benchmarks all

- name: Run tests
run: cabal test --test-show-details=streaming

- name: Run doctest
if: ${{ runner.os == 'Linux' }}
run: |
cabal sdist all
cabal install doctest --overwrite-policy=always
cabal repl --build-depends=QuickCheck --with-ghc=doctest
3 changes: 3 additions & 0 deletions Data/IP/RouteTable/Internal.hs
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ import Data.Word
import GHC.Generics (Generic, Generic1)
import Prelude hiding (lookup)

-- $setup
-- >>> :set -XOverloadedStrings

----------------------------------------------------------------

{-|
Expand Down
160 changes: 79 additions & 81 deletions iproute.cabal
Original file line number Diff line number Diff line change
@@ -1,85 +1,83 @@
Name: iproute
Version: 1.7.12
Author: Kazu Yamamoto <[email protected]>
Maintainer: Kazu Yamamoto <[email protected]>
License: BSD3
License-File: LICENSE
Homepage: http://www.mew.org/~kazu/proj/iproute/
Synopsis: IP Routing Table
Description: IP Routing Table is a tree of IP ranges
to search one of them on the longest
match base. It is a kind of TRIE with one
way branching removed. Both IPv4 and IPv6
are supported.
Category: Algorithms, Network
Cabal-Version: >= 1.10
Build-Type: Simple
Tested-With: GHC == 7.8.4
, GHC == 7.10.3
, GHC == 8.0.2
, GHC == 8.2.2
, GHC == 8.4.4
, GHC == 8.6.5
, GHC == 8.8.2
cabal-version: >=1.10
name: iproute
version: 1.7.12
license: BSD3
license-file: LICENSE
maintainer: Kazu Yamamoto <[email protected]>
author: Kazu Yamamoto <[email protected]>
tested-with:
ghc ==7.8.4 ghc ==7.10.3 ghc ==8.0.2 ghc ==8.2.2 ghc ==8.4.4
ghc ==8.6.5 ghc ==8.8.2

Library
Default-Language: Haskell2010
GHC-Options: -Wall
Exposed-Modules: Data.IP
Data.IP.Builder
Data.IP.Internal
Data.IP.RouteTable
Data.IP.RouteTable.Internal
Other-Modules: Data.IP.Addr
Data.IP.Mask
Data.IP.Op
Data.IP.Range
Build-Depends: base >= 4.9 && < 5
, appar
, byteorder
, bytestring
, containers
, network
if impl(ghc < 8.0)
Build-Depends: semigroups >= 0.17
if impl(ghc >= 8)
Default-Extensions: Strict StrictData
homepage: http://www.mew.org/~kazu/proj/iproute/
synopsis: IP Routing Table
description:
IP Routing Table is a tree of IP ranges
to search one of them on the longest
match base. It is a kind of TRIE with one
way branching removed. Both IPv4 and IPv6
are supported.

Test-Suite doctest
Type: exitcode-stdio-1.0
Default-Language: Haskell2010
HS-Source-Dirs: test
Ghc-Options: -threaded -Wall
Main-Is: doctests.hs
Build-Depends: base >= 4.6 && < 5
, doctest >= 0.9.3
, appar
, byteorder
, bytestring
, network
category: Algorithms, Network
build-type: Simple

Test-Suite spec
Type: exitcode-stdio-1.0
Default-Language: Haskell2010
Hs-Source-Dirs: test
Ghc-Options: -Wall
Main-Is: Spec.hs
Other-Modules: RouteTableSpec
, BuilderSpec
, IPSpec
Build-Depends: base >= 4.6 && < 5
, hspec
, QuickCheck
, appar
, byteorder
, bytestring
, containers
, network
, safe
, iproute
if impl(ghc < 8.0)
Build-Depends: semigroups >= 0.17
source-repository head
type: git
location: git://github.com/kazu-yamamoto/iproute.git

Source-Repository head
Type: git
Location: git://github.com/kazu-yamamoto/iproute.git
library
exposed-modules:
Data.IP
Data.IP.Builder
Data.IP.Internal
Data.IP.RouteTable
Data.IP.RouteTable.Internal

other-modules:
Data.IP.Addr
Data.IP.Mask
Data.IP.Op
Data.IP.Range

default-language: Haskell2010
ghc-options: -Wall
build-depends:
base >=4.9 && <5,
appar,
byteorder,
bytestring,
containers,
network

if impl(ghc <8.0)
build-depends: semigroups >=0.17

if impl(ghc >=8)
default-extensions: Strict StrictData

test-suite spec
type: exitcode-stdio-1.0
main-is: Spec.hs
build-tool-depends: hspec-discover:hspec-discover
hs-source-dirs: test
other-modules:
RouteTableSpec
BuilderSpec
IPSpec

default-language: Haskell2010
ghc-options: -Wall
build-depends:
base >=4.6 && <5,
hspec,
QuickCheck,
appar,
byteorder,
bytestring,
containers,
network,
safe,
iproute

if impl(ghc <8.0)
build-depends: semigroups >=0.17
11 changes: 0 additions & 11 deletions test/doctests.hs

This file was deleted.

0 comments on commit d3adf29

Please sign in to comment.