Skip to content

Commit

Permalink
Only works on Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
ThetaSinner committed Jun 22, 2024
1 parent 1753284 commit f1fe26f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 12 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,7 @@ jobs:
run: nix build .#lair_keystore_aarch64-apple

bundle-x86-64-linux:
strategy:
matrix:
os: [ ubuntu-latest, macos-latest, macos-13 ]
fail-fast: false
runs-on: ${{ matrix.os }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

Expand Down
14 changes: 7 additions & 7 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -100,13 +100,13 @@
} else { });

extractHolochainBin = bin: pkgs.stdenv.mkDerivation {
name = bin;
unpackPhase = "true";
installPhase = ''
mkdir -p $out/bin
cp ${inputs.holonix.packages.${localSystem}.holochain}/bin/${bin} $out/bin
'';
};
name = bin;
unpackPhase = "true";
installPhase = ''
mkdir -p $out/bin
cp ${inputs.holonix.packages.${localSystem}.holochain}/bin/${bin} $out/bin
'';
};
in
(defineHolochainPackages { crate = "holochain"; package = "holochain"; }) //
(defineHolochainPackages { crate = "hc"; package = "holochain_cli"; }) //
Expand Down

0 comments on commit f1fe26f

Please sign in to comment.