Provisionally disable the Stack CI, it's too flaky. (#1639)
This commit is contained in:
parent
751350ba9e
commit
b8675c0924
1 changed files with 28 additions and 28 deletions
56
.github/workflows/master.yml
vendored
56
.github/workflows/master.yml
vendored
|
@ -76,40 +76,40 @@ jobs:
|
||||||
(cd servant-conduit && eval $DOCTEST)
|
(cd servant-conduit && eval $DOCTEST)
|
||||||
(cd servant-pipes && eval $DOCTEST)
|
(cd servant-pipes && eval $DOCTEST)
|
||||||
|
|
||||||
stack:
|
# stack:
|
||||||
name: stack / ghc ${{ matrix.ghc }}
|
# name: stack / ghc ${{ matrix.ghc }}
|
||||||
runs-on: ubuntu-latest
|
# runs-on: ubuntu-latest
|
||||||
strategy:
|
# strategy:
|
||||||
matrix:
|
# matrix:
|
||||||
stack: ["2.7.5"]
|
# stack: ["2.7.5"]
|
||||||
ghc: ["8.10.7"]
|
# ghc: ["8.10.7"]
|
||||||
|
|
||||||
steps:
|
# steps:
|
||||||
- uses: actions/checkout@v2
|
# - uses: actions/checkout@v2
|
||||||
|
|
||||||
- uses: haskell/actions/setup@v1
|
# - uses: haskell/actions/setup@v1
|
||||||
name: Setup Haskell Stack
|
# name: Setup Haskell Stack
|
||||||
with:
|
# with:
|
||||||
ghc-version: ${{ matrix.ghc }}
|
# ghc-version: ${{ matrix.ghc }}
|
||||||
stack-version: ${{ matrix.stack }}
|
# stack-version: ${{ matrix.stack }}
|
||||||
|
|
||||||
- uses: actions/cache@v2.1.3
|
# - uses: actions/cache@v2.1.3
|
||||||
name: Cache ~/.stack
|
# name: Cache ~/.stack
|
||||||
with:
|
# with:
|
||||||
path: ~/.stack
|
# path: ~/.stack
|
||||||
key: ${{ runner.os }}-${{ matrix.ghc }}-stack
|
# key: ${{ runner.os }}-${{ matrix.ghc }}-stack
|
||||||
|
|
||||||
- name: Install dependencies
|
# - name: Install dependencies
|
||||||
run: |
|
# run: |
|
||||||
stack build --system-ghc --test --bench --no-run-tests --no-run-benchmarks --only-dependencies
|
# stack build --system-ghc --test --bench --no-run-tests --no-run-benchmarks --only-dependencies
|
||||||
|
|
||||||
- name: Build
|
# - name: Build
|
||||||
run: |
|
# run: |
|
||||||
stack build --system-ghc --test --bench --no-run-tests --no-run-benchmarks
|
# stack build --system-ghc --test --bench --no-run-tests --no-run-benchmarks
|
||||||
|
|
||||||
- name: Test
|
# - name: Test
|
||||||
run: |
|
# run: |
|
||||||
stack test --system-ghc
|
# stack test --system-ghc
|
||||||
|
|
||||||
ghcjs:
|
ghcjs:
|
||||||
name: ubuntu-latest / ghcjs 8.6
|
name: ubuntu-latest / ghcjs 8.6
|
||||||
|
|
Loading…
Reference in a new issue