diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2022-09-14 14:46:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-14 14:46:26 +0200 |
commit | 88a45d6149c0e304f6eb2efcc2d7a4d0d569f8af (patch) | |
tree | 75cb6bc7adeb50876b7d93f5431a7872b81932b9 /.github | |
parent | 88646eea295a07e0d35ccbf8884f0956bc6f4248 (diff) | |
parent | 7194c87dce39d89868b3bc25790fefb56f7fefae (diff) |
Merge pull request #7014 from DeterminateSystems/graham/ds-327-fish-support-for-the-nix-installer
Add Fish suport to the Nix installer
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yml | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 86b5dfd2e..628d1d192 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -81,7 +81,14 @@ jobs: with: install_url: '${{needs.installer.outputs.installerURL}}' install_options: "--tarball-url-prefix https://${{ env.CACHIX_NAME }}.cachix.org/serve" - - run: nix-instantiate -E 'builtins.currentTime' --eval + - run: sudo apt install fish zsh + if: matrix.os == 'ubuntu-latest' + - run: brew install fish + if: matrix.os == 'macos-latest' + - run: exec bash -c "nix-instantiate -E 'builtins.currentTime' --eval" + - run: exec sh -c "nix-instantiate -E 'builtins.currentTime' --eval" + - run: exec zsh -c "nix-instantiate -E 'builtins.currentTime' --eval" + - run: exec fish -c "nix-instantiate -E 'builtins.currentTime' --eval" docker_push_image: needs: [check_secrets, tests] |