.github: Don't build manual on macOS

The following doesn't build on macOS:

```nix
pkgs.python3Minimal.override {
  inherit self;
  includeSiteCustomize = true;
}
```

Same error as in
<https://github.com/NixOS/nixpkgs/issues/101229#issuecomment-1086295309>.
This commit is contained in:
Zhaofeng Li 2022-07-01 17:41:05 -07:00
parent 926d6a395b
commit fbf25faa24

View file

@ -39,7 +39,7 @@ jobs:
- name: Build manual
run: nix build .#manual -L
if: ${{ !contains(matrix.nix.name, '2.3') }}
if: ${{ !contains(matrix.nix.name, '2.3') && runner.os != 'macOS' }}
tests:
strategy: