Skip to content

Commit

Permalink
Use makem.sh in CI
Browse files Browse the repository at this point in the history
Currently, we need the --compile-batch option because compiling the files
individually fails on Emacs 25 (I think due to subr-x macros not being loaded at
startup).
  • Loading branch information
bcc32 committed Jul 6, 2024
1 parent a889ddc commit e1a9b8e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ jobs:
- name: Byte compilation
run: emacs --eval "(setq byte-compile-error-on-warn (>= emacs-major-version 26))" -L . --batch -f batch-byte-compile ./*.el
- name: Tests
run: nix shell ${{ matrix.ledger_version || 'nixpkgs#ledger' }} --print-build-logs -c make -C test test-batch
run: nix shell ${{ matrix.ledger_version || 'nixpkgs#ledger' }} --print-build-logs -c ./makem.sh test -vv --compile-batch
# This is currently for information only, since a lot of docstrings need fixing up
- name: Checkdoc
run: make -C test checkdoc || true
run: make lint-checkdoc || true
# TODO: Run other makem.sh lints

0 comments on commit e1a9b8e

Please sign in to comment.