Skip to content

Commit ba9007c

Browse files
committed
Update CI and Makefile to fail on compiler warnings
1 parent b749cef commit ba9007c

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ jobs:
1313
- '26.2'
1414
- '26.3'
1515
- '27.1'
16+
- '27.2'
17+
- '28.1'
1618
- 'snapshot'
1719
include:
1820
- emacs_version: 'snapshot'

Makefile.lisp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ lisp: $(ELCS)
1919

2020
%.elc: %.el
2121
@printf "Compiling $<\n"
22-
-@$(BATCH) --eval "(progn\
22+
@$(BATCH) -q --eval "(progn\
23+
(setq byte-compile-error-on-warn t) \
2324
(when (file-exists-p \"$@\")\
2425
(delete-file \"$@\"))\
2526
(fset 'message* (symbol-function 'message))\

0 commit comments

Comments
 (0)