21a3da25b8
Attempting to use `depot.tools.releases.filteredGitPush` for the first time. Exciting! Change-Id: I620140b0454128ea2ca51496a7d653ee4219104e Reviewed-on: https://cl.tvl.fyi/c/depot/+/6006 Reviewed-by: wpcarro <wpcarro@gmail.com> Autosubmit: wpcarro <wpcarro@gmail.com> Tested-by: BuildkiteCI
39 lines
951 B
Nix
39 lines
951 B
Nix
{ pkgs, depot, ... }:
|
|
|
|
let
|
|
cycle = pkgs.callPackage
|
|
({ emacsPackages }:
|
|
emacsPackages.trivialBuild {
|
|
pname = "cycle";
|
|
version = "1.0.0";
|
|
src = ./cycle.el;
|
|
packageRequires =
|
|
(with emacsPackages; [
|
|
dash
|
|
]) ++
|
|
(with depot.users.wpcarro.emacs.pkgs; [
|
|
list
|
|
maybe
|
|
struct
|
|
]);
|
|
})
|
|
{ };
|
|
|
|
emacs = (pkgs.emacsPackagesFor pkgs.emacs28).emacsWithPackages (epkgs: [
|
|
epkgs.dash
|
|
depot.users.wpcarro.emacs.pkgs.maybe
|
|
cycle
|
|
]);
|
|
in
|
|
cycle.overrideAttrs (_old: {
|
|
doCheck = true;
|
|
checkPhase = ''
|
|
${emacs}/bin/emacs -batch \
|
|
-l ert -l ${./tests.el} -f ert-run-tests-batch-and-exit
|
|
'';
|
|
passthru.meta.ci.extraSteps.github = depot.tools.releases.filteredGitPush {
|
|
filter = ":/users/wpcarro/emacs/pkgs/cycle";
|
|
remote = "git@github.com:wpcarro/cycle.el.git";
|
|
ref = "refs/heads/main";
|
|
};
|
|
})
|