Skip to content

Commit eb4264c

Browse files
authored
Merge pull request #1062 from mindofmatthew/1.9-build-fixes
Fix build process for 1.9 Fixes #1054 Fixes #1069
2 parents 36d94a8 + a2388a4 commit eb4264c

File tree

6 files changed

+30
-14
lines changed

6 files changed

+30
-14
lines changed

.github/workflows/listener-build-linux.yml

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
name: build-listener-linux
2-
3-
on: [push, pull_request]
2+
on:
3+
push:
4+
paths-ignore:
5+
- "**.md"
6+
pull_request:
7+
paths-ignore:
8+
- "**.md"
49

510
jobs:
611
build:

.github/workflows/listener-build-macosx.yml

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
name: build-listener-macosx
2-
3-
on: [push, pull_request]
2+
on:
3+
push:
4+
paths-ignore:
5+
- "**.md"
6+
pull_request:
7+
paths-ignore:
8+
- "**.md"
49

510
jobs:
611
build:

.github/workflows/listener-build-windows.yml

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
name: build-listener-windows
2-
3-
on: [push, pull_request]
2+
on:
3+
push:
4+
paths-ignore:
5+
- "**.md"
6+
pull_request:
7+
paths-ignore:
8+
- "**.md"
49

510
jobs:
611
build:

.github/workflows/nix.yml

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
# A set of CI jobs for checking the Nix flake.
22

33
name: "nix"
4-
54
on:
6-
pull_request:
75
push:
8-
branches:
9-
- master
6+
paths-ignore:
7+
- "**.md"
8+
pull_request:
9+
paths-ignore:
10+
- "**.md"
1011

1112
jobs:
1213
cancel-previous-runs:
@@ -31,7 +32,7 @@ jobs:
3132
needs: cancel-previous-runs
3233
strategy:
3334
matrix:
34-
package: [tidal, tidal-link, tidal-listener, tidal-parse]
35+
package: [tidal, tidal-link, tidal-parse]
3536
os: [ubuntu-latest, macos-latest]
3637
runs-on: ${{ matrix.os }}
3738
steps:

stack.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
resolver: lts-20.5
1+
resolver: lts-22.8
22

33
packages:
44
- '.'
@@ -8,6 +8,6 @@ packages:
88

99
extra-deps:
1010
- hosc-0.20
11-
- haskellish-0.3.2.1
11+
- haskellish-0.3.2.2
1212

1313

tidal-parse/tidal-parse.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ library
3535
, template-haskell
3636
, haskellish >= 0.3.2 && < 0.4
3737
, containers < 0.7
38-
, mtl >= 2.2.2 && <2.3
38+
, mtl >= 2.2.2 && <2.4
3939
, text < 2.1
4040

4141
if !impl(ghc >= 8.4.1)

0 commit comments

Comments
 (0)