Merge pull request #172428 from techknowlogick/flyctl-test

flyctl: add installCheckPhase to test binary successfully runs after build
This commit is contained in:
davidak 2022-05-11 18:52:32 +02:00 committed by GitHub
commit 64ab981b01
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,4 @@
{ buildGoModule, fetchFromGitHub, lib }:
{ buildGoModule, fetchFromGitHub, lib, testers, flyctl }:
buildGoModule rec {
pname = "flyctl";
@ -32,9 +32,15 @@ buildGoModule rec {
'';
postCheck = ''
go test ./... -ldflags="-X 'github.com/superfly/flyctl/internal/buildinfo.buildDate=1970-01-01T00:00:00+0000'"
go test ./... -ldflags="-X 'github.com/superfly/flyctl/internal/buildinfo.buildDate=1970-01-01T00:00:00Z'"
'';
passthru.tests.version = testers.testVersion {
package = flyctl;
command = "HOME=$(mktemp -d) flyctl version";
version = "v${flyctl.version}";
};
meta = with lib; {
description = "Command line tools for fly.io services";
downloadPage = "https://github.com/superfly/flyctl";