Skip to content

Commit

Permalink
Adjusted naming
Browse files Browse the repository at this point in the history
  • Loading branch information
smickovskid committed Dec 7, 2023
1 parent 9ee5e8c commit fffd8a7
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion integration-tests/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ in
{
# exports a package.<package-name> to be consumed by the flake.nix
packages = {
integration-tests_test-run-smoke = test-run-smoke.package;
integration-tests_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}.integration-tests_test-run-smoke
self.packages.${system}.integration-tests_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.integration-tests_test-run-smoke = {
apps.integration-tests_run-smoke = {
type = "app";
program = "${self.packages.${system}.integration-tests_run-smoke}/bin/integration-tests.test-run-smoke";
program = "${self.packages.${system}.integration-tests_run-smoke}/bin/integration-tests_run-smoke";
};
})
);
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/smoke/default.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{ pkgs }:

let
scriptName = "integration-tests_test-run-smoke";
scriptName = "integration-tests_run-smoke";
go = pkgs.go_1_21;
scriptBuildInputs = with pkgs; [ go go-ethereum ]; # add geth to handle missing underlying dependencies
testDir = toString ./.;
Expand Down

0 comments on commit fffd8a7

Please sign in to comment.