Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 15 additions & 4 deletions .github/workflows/packdiff.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

- name: Download ghc
run: |
GHCUP_VER=0.1.20.0
GHCUP_VER=0.1.50.2
curl -sL -o ./ghcup https://downloads.haskell.org/~ghcup/$GHCUP_VER/x86_64-linux-ghcup-$GHCUP_VER
chmod +x ./ghcup
GHCVER=9.8.1
Expand All @@ -28,12 +28,23 @@ jobs:
key: cache-v2

- name: Checkout the current branch
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0
ref: ${{ github.event.pull_request.head.sha }}

- name: Run packdiff on streamly-core
run: cabal run packdiff --project-file=cabal.project.packdiff -- diff streamly-core $(git rev-parse origin/master) streamly-core $(git rev-parse HEAD)
run: |
cabal run packdiff --project-file=cabal.project.packdiff -- \
diff streamly-core \
${{ github.event.pull_request.base.sha }} \
streamly-core \
$(git rev-parse HEAD)

- name: Run packdiff on streamly
run: cabal run packdiff --project-file=cabal.project.packdiff -- diff streamly $(git rev-parse origin/master) streamly $(git rev-parse HEAD)
run: |
cabal run packdiff --project-file=cabal.project.packdiff -- \
diff streamly \
${{ github.event.pull_request.base.sha }} \
streamly \
$(git rev-parse HEAD)
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
branches:
only:
- master
- streamly-0.11.0-release
- release/streamly-0.3

environment:
# ------------------------------------------------------------------------
Expand Down
Loading
Loading