Skip to content

Commit

Permalink
Changed naming
Browse files Browse the repository at this point in the history
  • Loading branch information
smickovskid committed Dec 7, 2023
1 parent 83b9f59 commit a48397a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions integration-tests/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@

let
# imports ./ethereum.print-chain/default.nix inheriting pkgs and chainlink-dev args
ethereum_test-run-smoke = pkgs.callPackage ./smoke { inherit pkgs; };
test-run-smoke = pkgs.callPackage ./smoke { inherit pkgs; };
in
{
# exports a package.<package-name> to be consumed by the flake.nix
packages = {
chainlink-dev_ethereum_test-run-smoke = ethereum_test-run-smoke.package;
integration-tests_test-run-smoke = test-run-smoke.package;
};
}
6 changes: 3 additions & 3 deletions integration-tests/flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions integration-tests/flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -74,17 +74,17 @@
inputs.chainlink.packages.${system}.chainlink

# add all local plugins of this project
self.packages.${system}.chainlink-dev_ethereum_test-run-smoke
self.packages.${system}.integration-tests_test-run-smoke
]++ pkgs.lib.optionals pkgs.stdenv.isDarwin [
# Additional darwin specific inputs can be set here
pkgs.libiconv
pkgs.darwin.apple_sdk.frameworks.Security
];
};

apps.chainlink-dev_ethereum_test-run-smoke = {
apps.integration-tests_test-run-smoke = {
type = "app";
program = "${self.packages.${system}.chainlink-dev_ethereum_run-smoke}/bin/chainlink-dev.ethereum.test-run-smoke";
program = "${self.packages.${system}.integration-tests_run-smoke}/bin/integration-tests.test-run-smoke";
};
})
);
Expand Down

0 comments on commit a48397a

Please sign in to comment.