From ab6d3c0a87cb184f3cd89d2885fc68be46ff590a Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Thu, 10 Nov 2022 15:40:32 -0700 Subject: [PATCH] Move CI to arch-specific location --- ci.toml => config/x86_64/ci.toml | 0 mk/ci.mk | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename ci.toml => config/x86_64/ci.toml (100%) diff --git a/ci.toml b/config/x86_64/ci.toml similarity index 100% rename from ci.toml rename to config/x86_64/ci.toml diff --git a/mk/ci.mk b/mk/ci.mk index f173503..43b4c85 100644 --- a/mk/ci.mk +++ b/mk/ci.mk @@ -25,7 +25,7 @@ ci-pkg: prefix FORCE $(HOST_CARGO) build --manifest-path cookbook/Cargo.toml --release $(HOST_CARGO) build --manifest-path installer/Cargo.toml --release export PATH="$(PREFIX_PATH):$$PATH" && \ - PACKAGES="$$($(INSTALLER) --list-packages -c ci.toml)" && \ + PACKAGES="$$($(INSTALLER) --list-packages -c config/$(ARCH)/ci.toml)" && \ cd cookbook && \ ./fetch.sh "$${PACKAGES}" && \ ./repo.sh "$${PACKAGES}"