-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
run-shim.el
203 lines (172 loc) · 7.65 KB
/
run-shim.el
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
;;; run-shim.el --- -*-no-byte-compile: t; lexical-binding: t -*-
;; Copyright (C) 2022 Positron Solutions
;; Author: Positron Solutions <contact@positron.solutions>
;; Permission is hereby granted, free of charge, to any person obtaining a copy of
;; this software and associated documentation files (the "Software"), to deal in
;; the Software without restriction, including without limitation the rights to
;; use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
;; the Software, and to permit persons to whom the Software is furnished to do so,
;; subject to the following conditions:
;; The above copyright notice and this permission notice shall be included in all
;; copies or substantial portions of the Software.
;; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
;; IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
;; FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
;; COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
;; IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
;; CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
;;; Commentary:
;; This package sets up load paths and then loads the test files and runs
;; commands depending on the command line arguments.
;;
;; Usage:
;;
;; Always get a fresh Emacs for your test runs. It will reload features and
;; byte compile where necessary. The Emacs provided by the nix develop shell
;; contains the dependencies declared in the flake.nix.
;;
;; nix develop .github#
;; "emacs" --quick --script .github/run-shim.el -- test
;; "emacs" --quick --script .github/run-shim.el -- lint
;; "emacs" --quick --script .github/run-shim.el -- lint-tests
;;
;; Note that this elisp script assumes that some packages are located in
;; specific locations.
;;; Code:
(defun run-shim ()
"Execute a CI process based on CLI arguments."
(run-shim-setup)
;; Consume the command argument and run one of the routines Additional
;; arguments can be read as needed in sub-commands.
;; Modify this hunk to change your CI steps.
(pcase (pop argv)
("test"
(require 'erk-test)
(ert-run-tests-batch-and-exit))
("lint"
(run-shim-lint-package))
("lint-tests"
(run-shim-lint-tests))
(_
(message "Command %s not recognized. Use test, lint, lint-tests etc."
run-shim-command))))
(defun run-shim-lint-package ()
"Lint the files in the package directory."
(require 'elisp-lint)
;; 100-character column limit for lints. If it's good enough for Linux, it's
;; good enough for us. https://lkml.org/lkml/2020/5/29/1038
(setq-default fill-column 100)
;; Spaces
(setq-default indent-tabs-mode nil)
;; `command-line-args-left has the same effect as passing command line arguments.
(let ((command-line-args-left
(append
'(;; "--no-<check>
;; "--no-byte-compile"
;; "--no-checkdoc"
;; "--no-package-lint"
;; "--no-indent"
;; "--no-indent-character"
;; "--no-fill-column"
;; "--no-trailing-whitespace"
;; "--no-check-declare"
)
(seq-filter
(lambda (s) (not (or (string-match-p "*-test.el$" s)
(string-match-p ".*autoloads.*.el$" s))))
(file-expand-wildcards
(if (file-exists-p "lisp/") "lisp/*.el"
"*.el"))))))
(message "ARGS: %s" command-line-args-left)
;; (setq elisp-lint-ignored-validators nil
;; elisp-lint-file-validators nil
;; elisp-lint-buffer-validators nil
;; elisp-lint-batch-files nil)
(elisp-lint-files-batch)))
(defun run-shim-lint-tests ()
"Lint the files in the test directory."
(require 'elisp-lint)
;; Use this file's directory as default directory so that lisp file locations
;; are fixed with respect to this file.
;; 100-character column limit for lints. If it's good enough for Linux, it's
;; good enough for us. https://lkml.org/lkml/2020/5/29/1038
(setq-default fill-column 100)
;; Spaces
(setq-default indent-tabs-mode nil)
;; `command-line-args-left has the same effect as passing command line arguments.
(let ((command-line-args-left
(append
'(;; "--no-<check>
;; "--no-byte-compile"
"--no-checkdoc"
"--no-package-lint"
;; "--no-indent"
;; "--no-indent-character"
;; "--no-fill-column"
;; "--no-trailing-whitespace"
;; "--no-check-declare"
)
(seq-filter
(lambda (s) (string-match-p "*-test.el$" s))
(file-expand-wildcards
(if (file-exists-p "test/") "test/*.el"
"*-test.el"))))))
(message "ARGS: %s" command-line-args-left)
;; (setq elisp-lint-ignored-validators nil
;; elisp-lint-file-validators nil
;; elisp-lint-buffer-validators nil
;; elisp-lint-batch-files nil)
(elisp-lint-files-batch)))
(defun run-shim-compile-dir-recursively (dir)
"Compile .el files in DIR.
This is usually before loading for tests etc. The behavior of
byte compiled and native compiled code is more interesting than
uncompiled elisp because usually installed packages will be
compiled when run by the user."
(mapc (if (native-comp-available-p) #'native-compile
#'byte-compile-file)
(directory-files-recursively dir (rx ".el" eol))))
(defun run-shim-setup ()
"Normalize load paths, compilation, and behavior of shell arguments.
The `default-directory' will be set to the root of the
repository. Arguments will be stripped of Nix wrapper load
paths. The load path will be configured to included /test,
/load, and the repository root. Elisp files on the load path
will be compiled, natively if available."
;; This expression normalizes the behavior of --quick --load <file> and --script
;; <file> behavior. If you don't do this, --script will see every argument
;; passed and the arguments from the Nix wrapper to set load paths. You can use
;; this to pass extra options to your scripts in the github actions.
(when (member (car argv) '("-l" "--"))
(print "Normalizing arguments")
(while (not (member (car argv) '("--" nil)))
(print (format "Normalizing arguments, stripped: %s" (pop argv))))
(pop argv)) ; pop the sentinel "--"
(message "original default directory: %s" default-directory)
(let* ((root-directory (if load-file-name
(file-name-directory
(directory-file-name
(file-name-directory load-file-name)))
(file-name-directory
(directory-file-name
default-directory))))
(test-dir (concat root-directory "test"))
(lisp-dir (concat root-directory "lisp"))
(package-dir (if (file-exists-p lisp-dir) lisp-dir
root-directory)))
(message "load-file-name for run-shim.el: %s" load-file-name)
(message "root load path: %s" root-directory)
(when (file-exists-p test-dir)
(message (format "test load path: %s" test-dir))
(push test-dir load-path))
(message (format "package load path: %s" root-directory))
(push package-dir load-path)
(setq default-directory root-directory))
;; running manually may encounter stale .elc
(setq load-prefer-newer t))
;; Only attempt to run when Emacs is loading with or --batch --no-x-resources,
;; which is implied by -Q.
(when (or noninteractive inhibit-x-resources)
(run-shim))
(provide 'run-shim)
;;; run-shim.el ends here