2021-10-04 16:27:57 +00:00
|
|
|
{
|
|
|
|
system ? builtins.currentSystem,
|
|
|
|
rust ? true,
|
|
|
|
integration ? true,
|
|
|
|
release ? true,
|
|
|
|
}:
|
|
|
|
|
|
|
|
with import ./nix/common.nix;
|
|
|
|
|
|
|
|
let
|
|
|
|
pkgs = import pkgsSrc {
|
2021-10-25 15:19:24 +00:00
|
|
|
inherit system;
|
|
|
|
overlays = [ cargo2nixOverlay ];
|
2021-10-04 16:27:57 +00:00
|
|
|
};
|
|
|
|
kaniko = (import ./nix/kaniko.nix) pkgs;
|
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
pkgs.mkShell {
|
|
|
|
shellHook = ''
|
|
|
|
function to_s3 {
|
|
|
|
aws \
|
|
|
|
--endpoint-url https://garage.deuxfleurs.fr \
|
|
|
|
--region garage \
|
|
|
|
s3 cp \
|
|
|
|
./result/bin/garage \
|
|
|
|
s3://garagehq.deuxfleurs.fr/_releases/''${DRONE_TAG:-$DRONE_COMMIT}/''${TARGET}/garage
|
|
|
|
}
|
|
|
|
|
|
|
|
function to_docker {
|
|
|
|
executor \
|
|
|
|
--force \
|
|
|
|
--customPlatform="''${DOCKER_PLATFORM}" \
|
|
|
|
--destination "''${CONTAINER_NAME}:''${CONTAINER_TAG}" \
|
|
|
|
--context dir://`pwd` \
|
|
|
|
--verbosity=debug
|
|
|
|
}
|
|
|
|
|
|
|
|
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 \
|
|
|
|
--content-type "text/html" \
|
|
|
|
result \
|
|
|
|
s3://garagehq.deuxfleurs.fr/_releases.html
|
|
|
|
}
|
2021-10-28 08:04:14 +00:00
|
|
|
|
|
|
|
function refresh_toolchain {
|
|
|
|
nix copy \
|
|
|
|
--to 's3://nix?endpoint=garage.deuxfleurs.fr®ion=garage&secret-key=/etc/nix/signing-key.sec' \
|
|
|
|
$(nix-store -qR \
|
|
|
|
$(nix-build --quiet --no-build-output --no-out-link nix/toolchain.nix))
|
|
|
|
}
|
2021-10-04 16:27:57 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
nativeBuildInputs =
|
2021-10-25 15:19:24 +00:00
|
|
|
(if rust then [
|
|
|
|
pkgs.rustPlatform.rust.rustc
|
|
|
|
pkgs.rustPlatform.rust.cargo
|
|
|
|
pkgs.clippy
|
|
|
|
pkgs.rustfmt
|
|
|
|
/*(pkgs.callPackage cargo2nix {}).package*/
|
|
|
|
] else [])
|
2021-10-04 16:27:57 +00:00
|
|
|
++
|
2021-10-28 08:04:14 +00:00
|
|
|
(if integration then [
|
|
|
|
pkgs.s3cmd
|
|
|
|
pkgs.awscli2
|
|
|
|
pkgs.minio-client
|
|
|
|
pkgs.rclone
|
|
|
|
pkgs.socat
|
|
|
|
pkgs.psmisc
|
|
|
|
pkgs.which
|
|
|
|
pkgs.openssl
|
|
|
|
pkgs.curl
|
2022-01-12 18:04:55 +00:00
|
|
|
pkgs.jq
|
2021-10-28 08:04:14 +00:00
|
|
|
] else [])
|
2021-10-04 16:27:57 +00:00
|
|
|
++
|
2021-10-28 08:04:14 +00:00
|
|
|
(if release then [
|
|
|
|
pkgs.awscli2
|
|
|
|
kaniko
|
|
|
|
] else [])
|
2021-10-04 16:27:57 +00:00
|
|
|
;
|
|
|
|
}
|