From d987b146923317949e52d78b90376364176a0dcb Mon Sep 17 00:00:00 2001 From: Daniel Wheeler Date: Tue, 18 Jul 2023 12:11:13 -0400 Subject: [PATCH] ci(github): fix broken local flake paths Local flake paths have issues on CIs. See https://github.com/NixOS/nix/issues/3978#issuecomment-1585001299. --- .github/workflows/test-jekyll.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/test-jekyll.yml b/.github/workflows/test-jekyll.yml index a4422c26a..39cfe8fa5 100644 --- a/.github/workflows/test-jekyll.yml +++ b/.github/workflows/test-jekyll.yml @@ -20,6 +20,9 @@ jobs: with: path: /run/user/${{ env.UID }}/http_cache.sqlite key: ${{ runner.os}}-http_cache.sqlite + # Following required because of + # https://github.com/NixOS/nix/issues/3978#issuecomment-1585001299 + - run: nix flake lock --update-input systems - run: nix develop --command bash -c "make simulations" - run: nix develop --command bash -c "find . -name '*.ipynb' -type f -not -path '*/.ipynb_checkpoints/*' -exec touch {} \;" - run: nix develop --command bash -c "make notebooks"