Skip to content

Commit

Permalink
Merge branch 'main' into next
Browse files Browse the repository at this point in the history
  • Loading branch information
guillemcordoba committed Sep 27, 2024
2 parents 524a5c4 + 66984eb commit 22a278c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions nix/dna.nix
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ let
mv workdir/${manifest.name}.dna $out
'';

release = runCommandLocal "${manifest.name}-release" { srcs = zomeSrcs; } ''
release = runCommandNoCC "${manifest.name}-release" { srcs = zomeSrcs; } ''
mkdir workdir
cp ${dnaManifestYaml} workdir/dna.yaml
Expand All @@ -67,7 +67,7 @@ let
'';

guardedRelease = if matchingIntegrityDna != null then
runCommandLocal "check-match-dna-${manifest.name}-integrity" {
runCommandNoCC "check-match-dna-${manifest.name}-integrity" {
srcs = [ release matchingIntegrityDna ];
buildInputs = [ compare-dnas-integrity ];
outputs = [ "out" ];
Expand Down
4 changes: 2 additions & 2 deletions nix/zome.nix
Original file line number Diff line number Diff line change
Expand Up @@ -104,12 +104,12 @@ let
cp ${wasm}/lib/${crate}.wasm $out
'';

release = runCommandLocal crate { buildInputs = [ binaryen ]; } ''
release = runCommandNoCC crate { buildInputs = [ binaryen ]; } ''
wasm-opt --strip-debug -Oz -o $out ${deterministicWasm}
'';

guardedRelease = if matchingZomeHash != null then
runCommandLocal "check-zome-${crate}-hash" {
runCommandNoCC "check-zome-${crate}-hash" {
srcs = [ release matchingZomeHash.meta.release ];
buildInputs = [ zome-wasm-hash ];
} ''
Expand Down

0 comments on commit 22a278c

Please sign in to comment.