From b8675c0924ddd95a77e407949b8e42cdc4b6ecd4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9ophile=20Choutri?= Date: Thu, 29 Dec 2022 19:25:58 +0100 Subject: [PATCH] Provisionally disable the Stack CI, it's too flaky. (#1639) --- .github/workflows/master.yml | 56 ++++++++++++++++++------------------ 1 file changed, 28 insertions(+), 28 deletions(-) diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index e155a0f4..5a9c3b17 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -76,40 +76,40 @@ jobs: (cd servant-conduit && eval $DOCTEST) (cd servant-pipes && eval $DOCTEST) - stack: - name: stack / ghc ${{ matrix.ghc }} - runs-on: ubuntu-latest - strategy: - matrix: - stack: ["2.7.5"] - ghc: ["8.10.7"] + # stack: + # name: stack / ghc ${{ matrix.ghc }} + # runs-on: ubuntu-latest + # strategy: + # matrix: + # stack: ["2.7.5"] + # ghc: ["8.10.7"] - steps: - - uses: actions/checkout@v2 + # steps: + # - uses: actions/checkout@v2 - - uses: haskell/actions/setup@v1 - name: Setup Haskell Stack - with: - ghc-version: ${{ matrix.ghc }} - stack-version: ${{ matrix.stack }} + # - uses: haskell/actions/setup@v1 + # name: Setup Haskell Stack + # with: + # ghc-version: ${{ matrix.ghc }} + # stack-version: ${{ matrix.stack }} - - uses: actions/cache@v2.1.3 - name: Cache ~/.stack - with: - path: ~/.stack - key: ${{ runner.os }}-${{ matrix.ghc }}-stack + # - uses: actions/cache@v2.1.3 + # name: Cache ~/.stack + # with: + # path: ~/.stack + # key: ${{ runner.os }}-${{ matrix.ghc }}-stack - - name: Install dependencies - run: | - stack build --system-ghc --test --bench --no-run-tests --no-run-benchmarks --only-dependencies + # - name: Install dependencies + # run: | + # stack build --system-ghc --test --bench --no-run-tests --no-run-benchmarks --only-dependencies - - name: Build - run: | - stack build --system-ghc --test --bench --no-run-tests --no-run-benchmarks + # - name: Build + # run: | + # stack build --system-ghc --test --bench --no-run-tests --no-run-benchmarks - - name: Test - run: | - stack test --system-ghc + # - name: Test + # run: | + # stack test --system-ghc ghcjs: name: ubuntu-latest / ghcjs 8.6