2023-01-26 11:20:12 +00:00
|
|
|
{ system ? builtins.currentSystem, }:
|
2021-10-04 16:27:57 +00:00
|
|
|
|
|
|
|
with import ./nix/common.nix;
|
|
|
|
|
|
|
|
let
|
|
|
|
pkgs = import pkgsSrc {
|
2021-10-25 15:19:24 +00:00
|
|
|
inherit system;
|
2021-10-04 16:27:57 +00:00
|
|
|
};
|
|
|
|
kaniko = (import ./nix/kaniko.nix) pkgs;
|
2022-09-26 15:19:21 +00:00
|
|
|
manifest-tool = (import ./nix/manifest-tool.nix) pkgs;
|
2022-03-03 12:34:20 +00:00
|
|
|
winscp = (import ./nix/winscp.nix) pkgs;
|
2024-02-07 18:23:32 +00:00
|
|
|
in
|
|
|
|
{
|
|
|
|
# --- Dev shell inherited from flake.nix ---
|
|
|
|
devShell = devShells.default;
|
|
|
|
|
|
|
|
# --- Continuous integration shell ---
|
|
|
|
# The shell used for all CI jobs (along with devShell)
|
|
|
|
ci = pkgs.mkShell {
|
2023-10-10 11:56:33 +00:00
|
|
|
nativeBuildInputs = with pkgs; [
|
2024-02-07 18:23:32 +00:00
|
|
|
kaniko
|
|
|
|
manifest-tool
|
2023-01-26 11:20:12 +00:00
|
|
|
winscp
|
2022-02-05 18:08:10 +00:00
|
|
|
|
2024-02-07 18:23:32 +00:00
|
|
|
awscli2
|
|
|
|
file
|
|
|
|
s3cmd
|
|
|
|
minio-client
|
|
|
|
rclone
|
|
|
|
socat
|
|
|
|
psmisc
|
|
|
|
which
|
|
|
|
openssl
|
|
|
|
curl
|
|
|
|
jq
|
|
|
|
];
|
2023-01-26 11:20:12 +00:00
|
|
|
shellHook = ''
|
|
|
|
function to_s3 {
|
|
|
|
aws \
|
|
|
|
--endpoint-url https://garage.deuxfleurs.fr \
|
|
|
|
--region garage \
|
|
|
|
s3 cp \
|
|
|
|
./result-bin/bin/garage \
|
|
|
|
s3://garagehq.deuxfleurs.fr/_releases/''${DRONE_TAG:-$DRONE_COMMIT}/''${TARGET}/garage
|
|
|
|
}
|
|
|
|
|
2024-02-08 14:41:52 +00:00
|
|
|
function to_s3_woodpecker {
|
|
|
|
aws \
|
|
|
|
--endpoint-url https://garage.deuxfleurs.fr \
|
|
|
|
--region garage \
|
|
|
|
s3 cp \
|
|
|
|
./result-bin/bin/garage \
|
|
|
|
s3://garagehq.deuxfleurs.fr/_releases/''${CI_COMMIT_TAG:-$CI_COMMIT_SHA}/''${TARGET}/garage
|
|
|
|
}
|
|
|
|
|
2023-01-26 11:20:12 +00:00
|
|
|
function to_docker {
|
|
|
|
executor \
|
|
|
|
--force \
|
|
|
|
--customPlatform="''${DOCKER_PLATFORM}" \
|
|
|
|
--destination "''${CONTAINER_NAME}:''${CONTAINER_TAG}" \
|
|
|
|
--context dir://`pwd` \
|
|
|
|
--verbosity=debug
|
|
|
|
}
|
|
|
|
|
|
|
|
function multiarch_docker {
|
|
|
|
manifest-tool push from-spec <(cat <<EOF
|
|
|
|
image: dxflrs/garage:''${CONTAINER_TAG}
|
|
|
|
manifests:
|
|
|
|
-
|
|
|
|
image: dxflrs/arm64_garage:''${CONTAINER_TAG}
|
|
|
|
platform:
|
|
|
|
architecture: arm64
|
|
|
|
os: linux
|
|
|
|
-
|
|
|
|
image: dxflrs/amd64_garage:''${CONTAINER_TAG}
|
|
|
|
platform:
|
|
|
|
architecture: amd64
|
|
|
|
os: linux
|
|
|
|
-
|
|
|
|
image: dxflrs/386_garage:''${CONTAINER_TAG}
|
|
|
|
platform:
|
|
|
|
architecture: 386
|
|
|
|
os: linux
|
|
|
|
-
|
|
|
|
image: dxflrs/arm_garage:''${CONTAINER_TAG}
|
|
|
|
platform:
|
|
|
|
architecture: arm
|
|
|
|
os: linux
|
|
|
|
EOF
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
function refresh_index {
|
|
|
|
aws \
|
|
|
|
--endpoint-url https://garage.deuxfleurs.fr \
|
|
|
|
--region garage \
|
|
|
|
s3 ls \
|
|
|
|
--recursive \
|
|
|
|
s3://garagehq.deuxfleurs.fr/_releases/ \
|
|
|
|
> aws-list.txt
|
|
|
|
|
|
|
|
nix-build nix/build_index.nix
|
|
|
|
|
|
|
|
aws \
|
|
|
|
--endpoint-url https://garage.deuxfleurs.fr \
|
|
|
|
--region garage \
|
|
|
|
s3 cp \
|
|
|
|
result/share/_releases.json \
|
|
|
|
s3://garagehq.deuxfleurs.fr/
|
|
|
|
|
|
|
|
aws \
|
|
|
|
--endpoint-url https://garage.deuxfleurs.fr \
|
|
|
|
--region garage \
|
|
|
|
s3 cp \
|
|
|
|
result/share/_releases.html \
|
|
|
|
s3://garagehq.deuxfleurs.fr/
|
|
|
|
}
|
|
|
|
'';
|
2024-02-07 18:23:32 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
# --- Cache shell ---
|
|
|
|
# A shell for refreshing caches
|
|
|
|
cache = pkgs.mkShell {
|
|
|
|
shellHook = ''
|
|
|
|
function refresh_toolchain {
|
|
|
|
pass show deuxfleurs/nix_priv_key > /tmp/nix-signing-key.sec
|
|
|
|
nix copy -j8 \
|
|
|
|
--to 's3://nix?endpoint=garage.deuxfleurs.fr®ion=garage&secret-key=/tmp/nix-signing-key.sec' \
|
|
|
|
$(nix-store -qR \
|
|
|
|
$(nix-build -j8 --no-build-output --no-out-link nix/toolchain.nix))
|
|
|
|
rm /tmp/nix-signing-key.sec
|
|
|
|
}
|
|
|
|
|
|
|
|
function refresh_cache {
|
|
|
|
pass show deuxfleurs/nix_priv_key > /tmp/nix-signing-key.sec
|
|
|
|
for attr in clippy.amd64 test.amd64 pkgs.{amd64,i386,arm,arm64}.release; do
|
|
|
|
echo "Updating cache for ''${attr}"
|
|
|
|
nix copy -j8 \
|
|
|
|
--to 's3://nix?endpoint=garage.deuxfleurs.fr®ion=garage&secret-key=/tmp/nix-signing-key.sec' \
|
|
|
|
$(nix path-info ''${attr} --file default.nix --derivation --recursive | sed 's/\.drv$/.drv^*/')
|
|
|
|
|
|
|
|
done
|
|
|
|
rm /tmp/nix-signing-key.sec
|
|
|
|
}
|
|
|
|
|
|
|
|
function refresh_flake_cache {
|
|
|
|
pass show deuxfleurs/nix_priv_key > /tmp/nix-signing-key.sec
|
|
|
|
for attr in packages.x86_64-linux.default devShells.x86_64-linux.default; do
|
|
|
|
echo "Updating cache for ''${attr}"
|
|
|
|
nix copy -j8 \
|
|
|
|
--to 's3://nix?endpoint=garage.deuxfleurs.fr®ion=garage&secret-key=/tmp/nix-signing-key.sec' \
|
|
|
|
".#''${attr}"
|
|
|
|
done
|
|
|
|
rm /tmp/nix-signing-key.sec
|
|
|
|
}
|
|
|
|
'';
|
2023-01-26 11:20:12 +00:00
|
|
|
};
|
2021-10-04 16:27:57 +00:00
|
|
|
}
|
|
|
|
|