From 9c687329175248099bc777a8c4b909a093bb40fa Mon Sep 17 00:00:00 2001 From: adisbladis Date: Mon, 30 May 2022 18:12:27 +0800 Subject: [PATCH] tests: Add a cross test --- tests/cross/default.nix | 2 ++ tests/run.go | 1 + 2 files changed, 3 insertions(+) create mode 100644 tests/cross/default.nix diff --git a/tests/cross/default.nix b/tests/cross/default.nix new file mode 100644 index 0000000..99d6fe5 --- /dev/null +++ b/tests/cross/default.nix @@ -0,0 +1,2 @@ +{ pkgs }: +pkgs.pkgsCross.aarch64-multiplatform.callPackage ../../. { } diff --git a/tests/run.go b/tests/run.go index c682d40..a75f399 100644 --- a/tests/run.go +++ b/tests/run.go @@ -91,6 +91,7 @@ func getTestDirs(rootDir string) ([]string, error) { blacklist = []string{ "helm", "minikube", + "cross", } }