blob: d38ca0b5d8bea0b7d8937419a933f377d1b019d2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# Definitions for simple release mechanisms from depot.
{ depot, lib, pkgs, ... }:
let
inherit (lib.strings) makeBinPath sanitizeDerivationName;
in
{
# Use a josh filter to push a certain subset of canon to another git
# repository.
#
# This expects, of course, that the remote repository has granted
# push access to the CI SSH key.
filteredGitPush = { filter, remote, ref ? "refs/heads/canon" }: {
label = ":git: push '${filter}' to external git repository";
branches = [ "refs/heads/canon" ];
phase = "release";
command = pkgs.writeShellScript "${sanitizeDerivationName filter}-push" ''
set -e
export PATH="${makeBinPath [ pkgs.git depot.third_party.josh ]}:$PATH"
echo 'Filtering depot through ${filter}'
josh-filter '${filter}'
echo 'Fetching remote to check if a push is needed'
git fetch '${remote}' '${ref}'
if git merge-base --is-ancestor FILTERED_HEAD FETCH_HEAD; then
echo 'Commit already present, nothing to push.'
exit 0
fi
echo 'Pushing filtered repository to ${remote}:${ref}'
git push '${remote}' 'FILTERED_HEAD:${ref}'
'';
};
}
|