Ryan Lahfa
62b36ed124
All checks were successful
lint / check (push) Successful in 23s
Check meta / check_meta (pull_request) Successful in 17s
Check meta / check_dns (pull_request) Successful in 18s
build configuration / build_krz01 (pull_request) Successful in 1m20s
build configuration / build_compute01 (pull_request) Successful in 1m14s
build configuration / build_vault01 (pull_request) Successful in 1m11s
build configuration / build_web02 (pull_request) Successful in 1m9s
build configuration / build_storage01 (pull_request) Successful in 1m17s
lint / check (pull_request) Successful in 23s
build configuration / build_web01 (pull_request) Successful in 1m48s
build configuration / build_bridge01 (pull_request) Successful in 1m3s
build configuration / build_rescue01 (pull_request) Successful in 1m14s
build configuration / build_geo01 (pull_request) Successful in 1m10s
build configuration / build_geo02 (pull_request) Successful in 1m12s
build configuration / push_to_cache_krz01 (pull_request) Successful in 1m22s
build configuration / push_to_cache_web02 (pull_request) Successful in 1m24s
build configuration / push_to_cache_vault01 (pull_request) Successful in 1m41s
build configuration / push_to_cache_compute01 (pull_request) Successful in 2m2s
build configuration / push_to_cache_storage01 (pull_request) Successful in 1m23s
build configuration / push_to_cache_bridge01 (pull_request) Successful in 1m6s
build configuration / push_to_cache_web01 (pull_request) Successful in 2m1s
build configuration / push_to_cache_rescue01 (pull_request) Successful in 1m20s
build configuration / push_to_cache_geo01 (pull_request) Successful in 1m9s
build configuration / push_to_cache_geo02 (pull_request) Successful in 1m8s
To make CI happy. Signed-off-by: Ryan Lahfa <ryan@dgnum.eu>
54 lines
1.7 KiB
Diff
54 lines
1.7 KiB
Diff
From 4d6e57d2d577cc105c9e0cd397408e9e3ce85cd0 Mon Sep 17 00:00:00 2001
|
|
From: Raito Bezarius <masterancpp@gmail.com>
|
|
Date: Tue, 8 Oct 2024 16:33:14 +0200
|
|
Subject: [PATCH] fix(packaging): correctness of the build top directory
|
|
|
|
It was using /build which is an implementation detail and not
|
|
guaranteed.
|
|
|
|
Signed-off-by: Raito Bezarius <masterancpp@gmail.com>
|
|
---
|
|
pkgs/pve-container/default.nix | 6 +++---
|
|
pkgs/pve-rs/default.nix | 2 +-
|
|
2 files changed, 4 insertions(+), 4 deletions(-)
|
|
|
|
diff --git a/pkgs/pve-container/default.nix b/pkgs/pve-container/default.nix
|
|
index 445c271..5633c0f 100644
|
|
--- a/pkgs/pve-container/default.nix
|
|
+++ b/pkgs/pve-container/default.nix
|
|
@@ -30,7 +30,7 @@ perl536.pkgs.toPerlModule (
|
|
postPatch = ''
|
|
sed -i Makefile \
|
|
-e "s/pct.1 pct.conf.5 pct.bash-completion pct.zsh-completion //" \
|
|
- -e "s,/usr/share/lxc,/build/lxc," \
|
|
+ -e "s,/usr/share/lxc,$NIX_BUILD_TOP/lxc," \
|
|
-e "/pve-doc-generator/d" \
|
|
-e "/PVE_GENERATING_DOCS/d" \
|
|
-e "/SERVICEDIR/d" \
|
|
@@ -45,8 +45,8 @@ perl536.pkgs.toPerlModule (
|
|
dontPatchShebangs = true;
|
|
|
|
postConfigure = ''
|
|
- cp -r ${lxc}/share/lxc /build
|
|
- chmod -R +w /build/lxc
|
|
+ cp -r ${lxc}/share/lxc $NIX_BUILD_TOP/
|
|
+ chmod -R +w $NIX_BUILD_TOP/lxc
|
|
'';
|
|
|
|
makeFlags = [
|
|
diff --git a/pkgs/pve-rs/default.nix b/pkgs/pve-rs/default.nix
|
|
index c024287..881beab 100644
|
|
--- a/pkgs/pve-rs/default.nix
|
|
+++ b/pkgs/pve-rs/default.nix
|
|
@@ -57,7 +57,7 @@ perl536.pkgs.toPerlModule (
|
|
];
|
|
|
|
makeFlags = [
|
|
- "BUILDIR=/build"
|
|
+ "BUILDIR=$NIX_BUILD_TOP"
|
|
"BUILD_MODE=release"
|
|
"DESTDIR=$(out)"
|
|
"GITVERSION:=${src.rev}"
|
|
--
|
|
2.46.0
|
|
|