Add CI jobs for all supported major versions of tasty

This commit is contained in:
Bodigrim 2022-05-21 22:45:22 +01:00
parent fce531307f
commit c9869bfe77
3 changed files with 72 additions and 25 deletions

View File

@ -1,6 +1,6 @@
# This GitHub workflow config has been generated by a script via
#
# haskell-ci 'github' '--ghcup-version=0.1.17.3' 'tasty-bench.cabal'
# haskell-ci 'github' 'tasty-bench.cabal'
#
# To regenerate the script (for example after adjusting tested-with) run
#
@ -8,9 +8,9 @@
#
# For more information, see https://github.com/haskell-CI/haskell-ci
#
# version: 0.13.20211029
# version: 0.14.3
#
# REGENDATA ("0.13.20211029",["github","--ghcup-version=0.1.17.3","tasty-bench.cabal"])
# REGENDATA ("0.14.3",["github","tasty-bench.cabal"])
#
name: Haskell-CI
on:
@ -20,21 +20,23 @@ jobs:
linux:
name: Haskell-CI - Linux - ${{ matrix.compiler }}
runs-on: ubuntu-18.04
timeout-minutes:
60
container:
image: buildpack-deps:bionic
continue-on-error: ${{ matrix.allow-failure }}
strategy:
matrix:
include:
- compiler: ghc-9.2.1
- compiler: ghc-9.2.2
compilerKind: ghc
compilerVersion: 9.2.1
compilerVersion: 9.2.2
setup-method: ghcup
allow-failure: true
- compiler: ghc-9.0.1
allow-failure: false
- compiler: ghc-9.0.2
compilerKind: ghc
compilerVersion: 9.0.1
setup-method: hvr-ppa
compilerVersion: 9.0.2
setup-method: ghcup
allow-failure: false
- compiler: ghc-8.10.7
compilerKind: ghc
@ -104,7 +106,7 @@ jobs:
apt-get install -y --no-install-recommends gnupg ca-certificates dirmngr curl git software-properties-common libtinfo5
if [ "${{ matrix.setup-method }}" = ghcup ]; then
mkdir -p "$HOME/.ghcup/bin"
curl -sL https://downloads.haskell.org/ghcup/0.1.17.3/x86_64-linux-ghcup-0.1.17.3 > "$HOME/.ghcup/bin/ghcup"
curl -sL https://downloads.haskell.org/ghcup/0.1.17.5/x86_64-linux-ghcup-0.1.17.5 > "$HOME/.ghcup/bin/ghcup"
chmod a+x "$HOME/.ghcup/bin/ghcup"
"$HOME/.ghcup/bin/ghcup" install ghc "$HCVER"
"$HOME/.ghcup/bin/ghcup" install cabal 3.6.2.0
@ -113,7 +115,7 @@ jobs:
apt-get update
apt-get install -y "$HCNAME"
mkdir -p "$HOME/.ghcup/bin"
curl -sL https://downloads.haskell.org/ghcup/0.1.17.3/x86_64-linux-ghcup-0.1.17.3 > "$HOME/.ghcup/bin/ghcup"
curl -sL https://downloads.haskell.org/ghcup/0.1.17.5/x86_64-linux-ghcup-0.1.17.5 > "$HOME/.ghcup/bin/ghcup"
chmod a+x "$HOME/.ghcup/bin/ghcup"
"$HOME/.ghcup/bin/ghcup" install cabal 3.6.2.0
fi
@ -146,7 +148,7 @@ jobs:
echo "HCNUMVER=$HCNUMVER" >> "$GITHUB_ENV"
echo "ARG_TESTS=--enable-tests" >> "$GITHUB_ENV"
echo "ARG_BENCH=--enable-benchmarks" >> "$GITHUB_ENV"
if [ $((HCNUMVER >= 90200)) -ne 0 ] ; then echo "HEADHACKAGE=true" >> "$GITHUB_ENV" ; else echo "HEADHACKAGE=false" >> "$GITHUB_ENV" ; fi
echo "HEADHACKAGE=false" >> "$GITHUB_ENV"
echo "ARG_COMPILER=--$HCKIND --with-compiler=$HC" >> "$GITHUB_ENV"
echo "GHCJSARITH=0" >> "$GITHUB_ENV"
env:
@ -175,17 +177,10 @@ jobs:
repository hackage.haskell.org
url: http://hackage.haskell.org/
EOF
if $HEADHACKAGE; then
cat >> $CABAL_CONFIG <<EOF
repository head.hackage.ghc.haskell.org
url: https://ghc.gitlab.haskell.org/head.hackage/
secure: True
root-keys: 7541f32a4ccca4f97aea3b22f5e593ba2c0267546016b992dfadcd2fe944e55d
26021a13b401500c8eb2761ca95c61f2d625bfef951b939a8124ed12ecf07329
f76d08be13e9a61a377a85e2fb63f4c5435d40f8feb3e12eb05905edb8cdea89
key-threshold: 3
program-default-options
ghc-options: $GHCJOBS +RTS -M3G -RTS
EOF
fi
cat $CABAL_CONFIG
- name: versions
run: |
@ -233,9 +228,6 @@ jobs:
if [ $((HCNUMVER >= 80200)) -ne 0 ] ; then echo " ghc-options: -Werror=missing-methods" >> cabal.project ; fi
cat >> cabal.project <<EOF
EOF
if $HEADHACKAGE; then
echo "allow-newer: $($HCPKG list --simple-output | sed -E 's/([a-zA-Z-]+)-[0-9.]+/*:\1,/g')" >> cabal.project
fi
$HCPKG list --simple-output --names-only | perl -ne 'for (split /\s+/) { print "constraints: $_ installed\n" unless /^(tasty-bench)$/; }' >> cabal.project.local
cat cabal.project
cat cabal.project.local
@ -273,6 +265,34 @@ jobs:
- name: prepare for constraint sets
run: |
rm -f cabal.project.local
- name: constraint set tasty-1.4
run: |
$CABAL v2-build $ARG_COMPILER --disable-tests --disable-benchmarks --constraint='tasty ^>= 1.4' --dependencies-only -j2 all
$CABAL v2-build $ARG_COMPILER --disable-tests --disable-benchmarks --constraint='tasty ^>= 1.4' all
- name: constraint set tasty-1.3
run: |
if [ $((HCNUMVER >= 70800)) -ne 0 ] ; then $CABAL v2-build $ARG_COMPILER --disable-tests --disable-benchmarks --constraint='tasty ^>= 1.3' --constraint='hashable < 1.4' --dependencies-only -j2 all ; fi
if [ $((HCNUMVER >= 70800)) -ne 0 ] ; then $CABAL v2-build $ARG_COMPILER --disable-tests --disable-benchmarks --constraint='tasty ^>= 1.3' --constraint='hashable < 1.4' all ; fi
- name: constraint set tasty-1.2
run: |
if [ $((HCNUMVER >= 70400)) -ne 0 ] ; then $CABAL v2-build $ARG_COMPILER --disable-tests --disable-benchmarks --constraint='tasty ^>= 1.2' --constraint='hashable < 1.4' --dependencies-only -j2 all ; fi
if [ $((HCNUMVER >= 70400)) -ne 0 ] ; then $CABAL v2-build $ARG_COMPILER --disable-tests --disable-benchmarks --constraint='tasty ^>= 1.2' --constraint='hashable < 1.4' all ; fi
- name: constraint set tasty-1.1
run: |
if [ $((HCNUMVER >= 70400)) -ne 0 ] ; then $CABAL v2-build $ARG_COMPILER --disable-tests --disable-benchmarks --constraint='tasty ^>= 1.1' --constraint='hashable < 1.4' --dependencies-only -j2 all ; fi
if [ $((HCNUMVER >= 70400)) -ne 0 ] ; then $CABAL v2-build $ARG_COMPILER --disable-tests --disable-benchmarks --constraint='tasty ^>= 1.1' --constraint='hashable < 1.4' all ; fi
- name: constraint set tasty-1.0
run: |
if [ $((HCNUMVER >= 70400 && HCNUMVER < 80600)) -ne 0 ] ; then $CABAL v2-build $ARG_COMPILER --disable-tests --disable-benchmarks --constraint='tasty ^>= 1.0' --constraint='hashable < 1.4' --dependencies-only -j2 all ; fi
if [ $((HCNUMVER >= 70400 && HCNUMVER < 80600)) -ne 0 ] ; then $CABAL v2-build $ARG_COMPILER --disable-tests --disable-benchmarks --constraint='tasty ^>= 1.0' --constraint='hashable < 1.4' all ; fi
- name: constraint set tasty-0.12
run: |
if [ $((HCNUMVER >= 70400 && HCNUMVER < 80600)) -ne 0 ] ; then $CABAL v2-build $ARG_COMPILER --disable-tests --disable-benchmarks --constraint='tasty ^>= 0.12' --constraint='hashable < 1.4' --dependencies-only -j2 all ; fi
if [ $((HCNUMVER >= 70400 && HCNUMVER < 80600)) -ne 0 ] ; then $CABAL v2-build $ARG_COMPILER --disable-tests --disable-benchmarks --constraint='tasty ^>= 0.12' --constraint='hashable < 1.4' all ; fi
- name: constraint set tasty-0.11.3
run: |
if [ $((HCNUMVER >= 70400 && HCNUMVER < 80400)) -ne 0 ] ; then $CABAL v2-build $ARG_COMPILER --disable-tests --disable-benchmarks --constraint='tasty == 0.11.3' --constraint='hashable < 1.4' --dependencies-only -j2 all ; fi
if [ $((HCNUMVER >= 70400 && HCNUMVER < 80400)) -ne 0 ] ; then $CABAL v2-build $ARG_COMPILER --disable-tests --disable-benchmarks --constraint='tasty == 0.11.3' --constraint='hashable < 1.4' all ; fi
- name: constraint set no-tasty-debug
run: |
$CABAL v2-build $ARG_COMPILER --disable-tests --disable-benchmarks --constraint='tasty-bench -tasty +debug' --dependencies-only -j2 all

View File

@ -6,3 +6,30 @@ constraint-set debug
constraint-set no-tasty-debug
constraints: tasty-bench -tasty +debug
constraint-set tasty-0.11.3
constraints: tasty == 0.11.3, hashable < 1.4
ghc: >= 7.4 && < 8.4
constraint-set tasty-0.12
constraints: tasty ^>= 0.12, hashable < 1.4
ghc: >= 7.4 && < 8.6
constraint-set tasty-1.0
constraints: tasty ^>= 1.0, hashable < 1.4
ghc: >= 7.4 && < 8.6
constraint-set tasty-1.1
constraints: tasty ^>= 1.1, hashable < 1.4
ghc: >= 7.4
constraint-set tasty-1.2
constraints: tasty ^>= 1.2, hashable < 1.4
ghc: >= 7.4
constraint-set tasty-1.3
constraints: tasty ^>= 1.3, hashable < 1.4
ghc: >= 7.8
constraint-set tasty-1.4
constraints: tasty ^>= 1.4

View File

@ -24,7 +24,7 @@ extra-source-files:
extra-doc-files:
example.svg
tested-with: GHC == 9.2.1, GHC==9.0.1, GHC==8.10.7, GHC==8.8.4, GHC==8.6.5, GHC==8.4.4, GHC==8.2.2, GHC==8.0.2, GHC==7.10.3, GHC==7.8.4, GHC==7.6.3, GHC==7.4.2, GHC==7.2.2, GHC==7.0.4
tested-with: GHC == 9.2.2, GHC==9.0.2, GHC==8.10.7, GHC==8.8.4, GHC==8.6.5, GHC==8.4.4, GHC==8.2.2, GHC==8.0.2, GHC==7.10.3, GHC==7.8.4, GHC==7.6.3, GHC==7.4.2, GHC==7.2.2, GHC==7.0.4
source-repository head
type: git