Skip to content

Commit

Permalink
Merge branch 'master' into fix-shellcmd-string-arg
Browse files Browse the repository at this point in the history
  • Loading branch information
cunningdefenestrator committed Jan 15, 2023
2 parents ebe2bf7 + 9d58cab commit 75c2f81
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 17 deletions.
17 changes: 6 additions & 11 deletions .github/workflows/haskell-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
#
# For more information, see https://github.com/haskell-CI/haskell-ci
#
# version: 0.15.20221107
# version: 0.15.20221225
#
# REGENDATA ("0.15.20221107",["github","shelly.cabal"])
# REGENDATA ("0.15.20221225",["github","shelly.cabal"])
#
name: Haskell-CI
on:
Expand All @@ -32,21 +32,16 @@ jobs:
strategy:
matrix:
include:
- compiler: ghc-9.4.1
- compiler: ghc-9.4.4
compilerKind: ghc
compilerVersion: 9.4.1
compilerVersion: 9.4.4
setup-method: ghcup
allow-failure: false
- compiler: ghc-9.2.5
compilerKind: ghc
compilerVersion: 9.2.5
setup-method: ghcup
allow-failure: false
- compiler: ghc-9.2.3
compilerKind: ghc
compilerVersion: 9.2.3
setup-method: ghcup
allow-failure: false
- compiler: ghc-9.0.2
compilerKind: ghc
compilerVersion: 9.0.2
Expand Down Expand Up @@ -184,7 +179,7 @@ jobs:
chmod a+x $HOME/.cabal/bin/cabal-plan
cabal-plan --version
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
path: source
- name: initial cabal.project for sdist
Expand Down Expand Up @@ -220,7 +215,7 @@ jobs:
$CABAL v2-build $ARG_COMPILER $ARG_TESTS $ARG_BENCH --dry-run all
cabal-plan
- name: cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
key: ${{ runner.os }}-${{ matrix.compiler }}-${{ github.sha }}
path: ~/.cabal/store
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/mac-win-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ jobs:
- 8.8.4
- 8.10.7
- 9.0.2
- 9.2.2
- 9.2.5
- 9.4.4
fail-fast: false

# 2021-11-14
Expand All @@ -29,9 +30,9 @@ jobs:
# continue-on-error: ${{ startsWith(matrix.os, 'windows') && startsWith(matrix.ghc, '9.2') }}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- uses: haskell/actions/setup@v1
- uses: haskell/actions/setup@v2
id: setup-haskell-cabal
name: Setup Haskell
with:
Expand All @@ -41,7 +42,7 @@ jobs:
run: |
cabal freeze
- uses: actions/cache@v2
- uses: actions/cache@v3
name: Cache ~/.cabal/store
with:
path: ${{ steps.setup-haskell-cabal.outputs.cabal-store }}
Expand Down
3 changes: 1 addition & 2 deletions shelly.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,8 @@ Build-type: Simple
Cabal-version: >=1.10

tested-with:
GHC == 9.4.1
GHC == 9.4.4
GHC == 9.2.5
GHC == 9.2.3
GHC == 9.0.2
GHC == 8.10.7
GHC == 8.8.4
Expand Down

0 comments on commit 75c2f81

Please sign in to comment.