aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/ci.yml
diff options
context:
space:
mode:
authorJohn MacFarlane <[email protected]>2025-01-06 10:01:46 -0800
committerJohn MacFarlane <[email protected]>2025-01-06 10:01:46 -0800
commit45726adeaf6951da841c20ee5aaa3b6d2a41d068 (patch)
tree67e8584ec7f32a69e6ec1fc67eb7c7f328e2a3f1 /.github/workflows/ci.yml
parentad105a379e3986bc60c009f017ece08d85697834 (diff)
CI: comment out nix build.
Pending a solution for #10509.
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r--.github/workflows/ci.yml50
1 files changed, 25 insertions, 25 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 3222f0470..c96cdcc98 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -138,32 +138,32 @@ jobs:
run: |
stack test --fast
- linux-nix-cabal:
+# linux-nix-cabal:
- runs-on: ubuntu-latest
- strategy:
- fail-fast: true
- steps:
- - uses: actions/checkout@v4
- - uses: cachix/install-nix-action@v30
- with:
- nix_path: nixpkgs=channel:nixos-24.05
- - name: Cache cabal global package db
- id: cabal-global
- uses: actions/cache@v4
- with:
- path: |
- ~/.local/state/cabal
- key: ${{ runner.os }}-nix-cabal-global-${{ secrets.CACHE_VERSION }}
- - name: Cache cabal work
- id: cabal-local
- uses: actions/cache@v4
- with:
- path: |
- dist-newstyle
- key: ${{ runner.os }}-nix-cabal-local-${{ secrets.CACHE_VERSION }}
- - run: |
- nix-shell --run "cabal update && cabal test --enable-tests --disable-optimization --ghc-options=-Werror all"
+# runs-on: ubuntu-latest
+# strategy:
+# fail-fast: true
+# steps:
+# - uses: actions/checkout@v4
+# - uses: cachix/install-nix-action@v30
+# with:
+# nix_path: nixpkgs=channel:nixos-24.05
+# - name: Cache cabal global package db
+# id: cabal-global
+# uses: actions/cache@v4
+# with:
+# path: |
+# ~/.local/state/cabal
+# key: ${{ runner.os }}-nix-cabal-global-${{ secrets.CACHE_VERSION }}
+# - name: Cache cabal work
+# id: cabal-local
+# uses: actions/cache@v4
+# with:
+# path: |
+# dist-newstyle
+# key: ${{ runner.os }}-nix-cabal-local-${{ secrets.CACHE_VERSION }}
+# - run: |
+# nix-shell --run "cabal update && cabal test --enable-tests --disable-optimization --ghc-options=-Werror all"
windows: