bergmark / haskell-ci

Scripts and instructions for using CI services (e.g. Travis CI or Appveyor) with multiple GHC configurations

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

haskell-ci - CI generator for multiple GHC versions

At the moment haskell-ci support GitHub Actions workflow generation. There is also legacy Travis-CI configuration generator, which is unmaintained.

haskell-ci relies on hvr-ppa or ghcup to install GHC and cabal-install.

GHC-7.0.1 — GHC-9.2.1 are supported.

Quick-start instructions

  • Step 1: Clone and install this project in/from any directory

    $ git clone https://github.com/haskell-CI/haskell-ci.git
    $ cd haskell-ci
    $ cabal new-install haskell-ci:exe:haskell-ci

    or

    cabal new-install haskell-ci
  • Step 2: Change directories to your project:

    $ cd path/to/your-project
  • Step 3: Edit your project's *.cabal file to add a Tested-With line, such as this one:

    $ cat your-project.cabal
    ...
    Tested-With: GHC ==8.6.3 || ==8.4.4 || ==8.2.2
    ...

    Add as many or as few GHC versions to test as you want.

  • Step 4: Generate a workflow file for your project:

    $ # You run the following command from your project's directory, even
    $ # though it references the script from the `haskell-ci` project
    $ haskell-ci github your-project.cabal

    Note: If you have multiple local Cabal projects that you wish to build together using a cabal.project file, pass that file to haskell-ci instead:

    $ haskell-ci github cabal.project

    The haskell-ci tool looks at the Tested-With line in your *.cabal files and generates a configuration that tests each compiler version you listed in parallel.

  • Step 5: Create a branch with your new CI configuration file and push your branch:

    $ git checkout master            # Check out `master`
    $ git pull --ff-only             # Get the latest version of `master`
    $ git checkout -b new-ci         # Create a `new_travis` branch
    $ git add .
    $ git commit -m "New CI script"
    $ git push -u origin new-ci      # Push your branch upstream
  • Step 6: Fix the build

    If you're lucky, your repository will build for every compiler version you listed. If that's the case, then just merge your changes into master:

    $ git checkout master
    $ git merge new-ci  # Update `master` with your new CI script
    $ git push

    You can also merge your branch into master from Github's pull request view.

    If you're not lucky, then your new CI branch will fail for one or more versions of GHC, which is okay! Look at the build and fix any build failures you find and commit the fixes to your branch:

    $ # Fix any build failures you find and commit your changes
    $ ...
    $ git push  # Push your branch updates upstream

    Sometimes you may need to regenerate CI script, for example, when adding new compiler version to tested-with. You may simply run haskell-ci regenerate.

Real-world Examples

About

Scripts and instructions for using CI services (e.g. Travis CI or Appveyor) with multiple GHC configurations

License:GNU General Public License v3.0


Languages

Language:Haskell 63.2%Language:Shell 31.6%Language:Dockerfile 4.7%Language:Makefile 0.4%Language:Awk 0.1%