Skip to content

Commit

Permalink
Remove Stack from CI altogether
Browse files Browse the repository at this point in the history
  • Loading branch information
kozross committed Aug 5, 2020
1 parent ed8e22d commit c11a9b9
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 34 deletions.
33 changes: 0 additions & 33 deletions .github/workflows/haskell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,36 +47,3 @@ jobs:
- name: Test
run: |
cabal test all --enable-tests --test-show-details=streaming
stack:
name: ${{ matrix.os }} stack / ghc ${{ matrix.ghc }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
stack: ["latest"]
ghc: ["8.8.3"]

steps:
- uses: actions/checkout@v2
if: github.event.action == 'opened' || github.event.action == 'synchronize' || github.event.ref == 'refs/heads/master'

- uses: actions/[email protected]
name: Setup Haskell Stack
with:
ghc-version: ${{ matrix.ghc }}
stack-version: ${{ matrix.stack }}

- uses: actions/cache@v1
name: Cache ~/.stack
with:
path: ~/.stack
key: ${{ runner.os }}-${{ matrix.ghc }}-stack

- name: Build
run: |
stack build --system-ghc --test --no-run-tests
- name: Test
run: |
stack test --system-ghc
1 change: 0 additions & 1 deletion TODO.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,5 @@ anyone, they should become issues or PRs, and be removed from this list.
elucidated or specified - this should happen.
* Figure out why our CI settings break on the following combinations:
* Cabal latest, Windows latest, GHC 8.8.3
* Stack latest, macOS latest, GHC 8.6.5
* Checking custom schemata currently relies on an unsafe construction. This
should be replaced by a safer one.

0 comments on commit c11a9b9

Please sign in to comment.