Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
env: rm sanchonet scripts/release-bin/docker env for stoppage
  • Loading branch information
johnalotoski committed Feb 12, 2025
commit 8a3c96ca05270fcf4b9fe967662f86be47b6c64a
2 changes: 1 addition & 1 deletion nix/binary-release.nix
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ let
name = "cardano-node-${version}-${platform}";

environments = lib.getAttrs
[ "mainnet" "preprod" "preview" "sanchonet" ]
[ "mainnet" "preprod" "preview" ]
pkgs.cardanoLib.environments;


Expand Down
2 changes: 1 addition & 1 deletion nix/docker/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ let
context = ./context;

genCfgs = let
environments' = lib.getAttrs [ "mainnet" "preprod" "preview" "sanchonet" ] commonLib.environments;
environments' = lib.getAttrs [ "mainnet" "preprod" "preview" ] commonLib.environments;
cardano-deployment = commonLib.mkConfigHtml environments';
in
pkgs.runCommand "cardano-html" {} ''
Expand Down
2 changes: 1 addition & 1 deletion nix/scripts-submit-api.nix
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ let
# Until complete removal of some iohk-nix deprecated environments which have
# dangling dependencies such as shelley_qa, explicitly declare the
# environments we we want included.
environments' = pkgs.lib.getAttrs [ "mainnet" "preprod" "preview" "sanchonet" ] environments;
environments' = pkgs.lib.getAttrs [ "mainnet" "preprod" "preview" ] environments;

scripts = forEnvironmentsCustom (environment: recurseIntoAttrs {
submit-api = mkScript environment;
Expand Down
2 changes: 1 addition & 1 deletion nix/scripts.nix
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ let
# Until complete removal of some iohk-nix deprecated environments which have
# dangling dependencies such as shelley_qa, explicitly declare the
# environments we we want included.
environments' = pkgs.lib.getAttrs [ "mainnet" "preprod" "preview" "sanchonet" ] environments;
environments' = pkgs.lib.getAttrs [ "mainnet" "preprod" "preview" ] environments;

in forEnvironmentsCustom (environment: recurseIntoAttrs rec {
node = mkScript environment;
Expand Down
Loading